<html> <head> <script> var i; i = 0; function loop() { i = i + 1; alert(String(i)); setTimeout("loop()",1000); } setTimeout("loop()",1000); </script> </head> <body> </body> </html>
Try the above code in IE8, it will not give a warning message every 1 second if you hold the right mouse button.
But in firefox, it displays a warning message, even if you do not release the right click.
I want firefox functionality in IE8.
source share