Skip to content

Instantly share code, notes, and snippets.

@alenabdula
Created June 24, 2014 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alenabdula/b0a85230e49bbd7ebe1f to your computer and use it in GitHub Desktop.
Save alenabdula/b0a85230e49bbd7ebe1f to your computer and use it in GitHub Desktop.
(function(){
'use strict';
var querySelector = document.querySelector.bind(document);
var clickMe = querySelector('.clickMe');
clickMe.addEventListener('click', callback);
function callback(){
console.log('called');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment