What\'s the easiest way to find Dom elements with a css selector, without using a library?
function select( selector ) { return [ /* some magic here please
No there's no built in way. Essentially, if you decide to go without jQuery, you'll be replicating a buggy version of it in your code.