I\'m just curious to know Is there ANY ways in ANY browser to find out where the alert I get is raised from?
I tried it in chrome but there is no call stack availabl
How about wrapping the alert?
alert
window.original_alert = alert; alert = function (text) { // check the stack trace here do_some_debugging_or_whatever(); // call the original function original_alert(text); }
This should be cross-browser.