Skip to content

Instantly share code, notes, and snippets.

@ippa
Created May 11, 2011 00:14
Show Gist options
  • Save ippa/965662 to your computer and use it in GitHub Desktop.
Save ippa/965662 to your computer and use it in GitHub Desktop.
svetlo-modified
// Modified: http://www.vcarrer.com/2011/04/svetlo-one-line-javascript-selector.html
function $(selector){
var elements = Array.prototype.slice.call( document.querySelectorAll(selector) )
var items = selector.split(" ")
return (items[items.length-1][0] == "#") ? elements[0] : elements // Return single element if fetching an ID
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment