createElement.js lets document.createElement use CSS selectors.
This is a pretty useful library for building out DOM elements. The whole thing runs on one regex and a for loop, so it’s plenty fast. The script is 300 bytes when compressed and gzipped. For 524 bytes (advanced), it includes nesting support and can generate entire DOM hierarchies, including text nodes.
document.createElement(); // generates <div />
document.createElement('li'); // generates <li />
document.createElement('#foo'); // generates <div id="foo" />
document.createElement('.bar'); // generates <div class="bar" />
document.createElement('.alpha.omega'); // generates <div class="alpha omega" />
document.createElement('[tabindex]'); // generates <div tabindex />
document.createElement('[title="Hello"]'); // generates <div title="Hello" />
document.createElement('p.this#thing.also[data-amen].that'); // generates <p id="thing" class="this also that" data-amen />
document.createElement('[data-value="<.it=\"#works[well]\">"]'); // generates <div data-value="<.it="#works[well]">" />
document.createElement('span.field\n\tlabel "To: "\n\t\tinput'); // generates <span class="field"><label>To: <input></label></span>
Works in everything since IE6.
That’s awesome, @DrunkenPoney!
This script ended up becoming https://github.com/jonathantneal/dom-create-node
What’s interesting is how we both switched to the while loop and classList. I should probably update this script to point to that repository.
Here is the current script: https://github.com/jonathantneal/dom-create-node/blob/master/index.es6
Would you be interested in committing any of your improvements there, and then adding your name to the contributors?