shekinskiy
Programmer
i want overwrite alert, do somethink and recall super alert.
not problem at overwriting, but a cann't recall super alert.
thanks for any help.
not problem at overwriting, but a cann't recall super alert.
Code:
function alert(aaa) {
// do something
confirm(aaa); // just for test, but works.
//alert(aaa); //does not work, gives memory exception, it is understandable becaouse of recursive calling, but what is runnable way of coding.
}
thanks for any help.