Category:Javascript: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

15 October 2023

  • curprev 01:0601:06, 15 October 2023RobertBushman talk contribs 385 bytes +385 Created page with "Category:Hacking = Hacks = Does obj have obj.magilla? <pre> return obj.hasOwnProperty("magilla"); </pre> = Add Lots of Divs = <syntaxhighlight lang="javascript"> var c = document.createDocumentFragment(); for (var i=0; i<10000; i++) { var e = document.createElement("div"); e.className = "test-div"; c.appendChild(e); } document.body.appendChild(c); </syntaxhighlight>"