Skip to content

Instantly share code, notes, and snippets.

@luztak
Last active October 7, 2015 11:47
Show Gist options
  • Save luztak/3160006 to your computer and use it in GitHub Desktop.
Save luztak/3160006 to your computer and use it in GitHub Desktop.
InkJS
_ = function(e){
var o;
if(e.substr(0, 0) === "#")
o = document.getElementsByTagName(e);
else{
if(e.substr(0, 0) === '.')
o = document.getElementsByName(e);
else{
o = document.getElementById(e);
}
}
return o;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment