You should be able to override Event.prototype.preventDefault and add a debugger statement as its first line.
var oldEPD = Event.prototype.preventDefault;
Event.prototype.preventDefault = function() {
debugger;
oldEPD.call(this);
};
You should be able to override Event.prototype.preventDefault and add a debugger statement as its first line.
var oldEPD = Event.prototype.preventDefault;
Event.prototype.preventDefault = function() {
debugger;
oldEPD.call(this);
};