H
howa
If I want to override default function, what can I do?
The following code work with IE7, but not FF2:
<html>
<script>
function alert(str) {
document.write('debug:'+str);
}
alert('hello');
</script>
</html>
The following code work with IE7, but not FF2:
<html>
<script>
function alert(str) {
document.write('debug:'+str);
}
alert('hello');
</script>
</html>