Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created July 23, 2014 13:56
Show Gist options
  • Save jlcampana/2a920e99135c94322cfc to your computer and use it in GitHub Desktop.
Save jlcampana/2a920e99135c94322cfc to your computer and use it in GitHub Desktop.
preventDefault en iExplorer<11
if (event.preventDefault) {
event.preventDefault();
} else {
event.returnValue = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment