Whenever my JavaScript dies while logging an error message to the Console, I’d like to be told about this immediately. The console is too invisible and often hidden or obscured by other windows.
Can I have something as prominent as a .NET exception dialog? To me these JavaScript errors are completely fatal; they aren’t something that can be ignored, and I’d like to know about them before I spend a while wondering why something doesn’t happen.
Are there addons that do this for Firefox or Chrome?
window.onerror = function(e) {alert(e)}?