Skip to content

Instantly share code, notes, and snippets.

@etoxin
Last active September 17, 2018 00:28
Show Gist options
  • Save etoxin/3242887cd247d2364ab26197dcc88dfb to your computer and use it in GitHub Desktop.
Save etoxin/3242887cd247d2364ab26197dcc88dfb to your computer and use it in GitHub Desktop.
event.preventDefault debugger

How to use

preventDefaultDebugger.js

Add this to your devtools console.

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