-
-
Save jed/966233 to your computer and use it in GitHub Desktop.
create DOM fragments from HTML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function( | |
a, // an HTML string | |
b, // placeholder | |
c // placeholder | |
){ | |
b = document; // get the document, | |
c = b.createElement("p"); // create a container element, | |
c.innerHTML = a; // write the HTML to it, and | |
a = b.createDocumentFragment(); // create a fragment. | |
while ( // while | |
b = c.firstChild // the container element has a first child | |
) a.appendChild(b); // append the child to the fragment, | |
return a // and then return the fragment. | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function(a,b,c){b=document;c=b.createElement("p");c.innerHTML=a;a=b.createDocumentFragment();while(b=c.firstChild)a.appendChild(b);return a} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | |
0. You just DO WHAT THE FUCK YOU WANT TO. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "frag", | |
"keywords": ["DOM", "document", "fragment"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment