Skip to content

Instantly share code, notes, and snippets.

@Integralist
Last active May 31, 2025 17:25
Show Gist options
  • Save Integralist/884830 to your computer and use it in GitHub Desktop.
Save Integralist/884830 to your computer and use it in GitHub Desktop.
Mobile Selector Engine #js
// A extremely basic selector engine for mobiles that support querySelectorAll /via @WebReflection (Andrea Giammarchi)
var $ = (function (s) {
return function $(q) {
return s.call(document.querySelectorAll(q))
}
}([].slice));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment