mattscotney
Programmer
Hi all,
The following JavaScript stops the alert box being used on a page:
<SCRIPT LANGUAGE = "Javascript">
window.alert=null;
alert("This alert will not show"
;
</SCRIPT>
If you run the above code you will not get an alert box. Is there a way to reset the window.alert event so that an alert box will show up?
Thanks in advance,
Matt Scotney
The following JavaScript stops the alert box being used on a page:
<SCRIPT LANGUAGE = "Javascript">
window.alert=null;
alert("This alert will not show"
</SCRIPT>
If you run the above code you will not get an alert box. Is there a way to reset the window.alert event so that an alert box will show up?
Thanks in advance,
Matt Scotney