Skip to content

Instantly share code, notes, and snippets.

@mulhoon
Last active August 15, 2016 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mulhoon/a9d554544fe6dd875f7682f147eb4e2d to your computer and use it in GitHub Desktop.
Save mulhoon/a9d554544fe6dd875f7682f147eb4e2d to your computer and use it in GitHub Desktop.
jQuery selection in One Line
$ = function(s){return s.charAt(0)==='#' ? document.getElementById(s.slice(1)) : document.querySelectorAll(s);};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment