Skip to content

Instantly share code, notes, and snippets.

@supersha
Created October 27, 2013 02:53
Show Gist options
  • Save supersha/7177468 to your computer and use it in GitHub Desktop.
Save supersha/7177468 to your computer and use it in GitHub Desktop.
// cross-browser events
function addEvent(object, event, method) {
if (object.addEventListener)
object.addEventListener(event, method, false);
else if(object.attachEvent)
object.attachEvent('on'+event, function(){ method(window.event) });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment