Is it possible to overwrite 'alert' messages like this plugin overwrites 'confirm'?
+1
A:
You can override the alert function
window.alert = function specailAlert(msg) {
//some facny code here
}
Svetlozar Angelov
2009-12-10 11:23:06
Thanks, I'll try this.
understack
2009-12-10 11:26:16