Skip to content

Instantly share code, notes, and snippets.

@doceazedo
Created September 18, 2020 02:32
Show Gist options
  • Save doceazedo/d9a05f2d3cf7f3d5c40b9c76c8a3111b to your computer and use it in GitHub Desktop.
Save doceazedo/d9a05f2d3cf7f3d5c40b9c76c8a3111b to your computer and use it in GitHub Desktop.
jQuery-like querySelector and querySelectorAll shorthand
function $ (sel) {
var el = document.querySelectorAll(sel);
if (el.length > 1) {
return el;
} else {
return el[0];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment