I use in my project third-party obfuscated JS library. The matter is it uses standard alert window for notifications. My task is to replace this browser alert window with my custom. My solution is:
alert = function(msg) {
customAlert(msg);
}
Is there any another, may be better way to solve this problem?