Has anyone got any experience with overriding the alert() function in JavaScript?
alert()
There are no dangers in Overring alert function. Every browser supprts it.
for example:
// function over riding. Redirecting to Console with Firebug installed. function alert(message) { console.info(message); } alert('This is an override.');