Created
January 22, 2014 11:02
-
-
Save lolikroli/8556948 to your computer and use it in GitHub Desktop.
A tiny JavaScript library for ourselves for simple DOM querying. //http://blog.adtile.me/2014/01/16/a-dive-into-plain-javascript/?utm_source=dlvr.it&utm_medium=facebook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $ = document.querySelectorAll.bind(document); | |
Element.prototype.on = Element.prototype.addEventListener; | |
$('#somelink')[0].on('touchstart', handleTouch); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment