Skip to content

Instantly share code, notes, and snippets.

@catdad
Created March 31, 2014 14:38
Show Gist options
  • Save catdad/9893838 to your computer and use it in GitHub Desktop.
Save catdad/9893838 to your computer and use it in GitHub Desktop.
Cancel event for modern browsers and old IE
//IE8 compatible cancel of event
ev.stopPropagation ? ev.stopPropagation() : ev.cancelBubble = true;
ev.preventDefault ? ev.preventDefault() : ev.returnValue = false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment