Skip to content

Instantly share code, notes, and snippets.

@ainformatico
Created April 26, 2013 08:14
Show Gist options
  • Save ainformatico/5465689 to your computer and use it in GitHub Desktop.
Save ainformatico/5465689 to your computer and use it in GitHub Desktop.
getElementById alias
$ = function()
{
var args = Array.prototype.slice.call(arguments, 0),
doc = document;
return doc.getElementById.apply(doc, args);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment