Skip to content

Instantly share code, notes, and snippets.

@heyMP
Created January 21, 2019 17:22
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 heyMP/94ca77783022f7e8d543fb54e873f14d to your computer and use it in GitHub Desktop.
Save heyMP/94ca77783022f7e8d543fb54e873f14d to your computer and use it in GitHub Desktop.
Listen for changes on the preventDefault property of events.
var oldEPD = Event.prototype.preventDefault;
Event.prototype.preventDefault = function() {
debugger;
oldEPD.call(this);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment