Has anyone got any experience with overriding the alert() function in JavaScript?
alert()
A quick hack that I do to find where the alerts are coming from, is to go to console and then enter this
function alert(message) { console.info(message); debugger; }