Syntax
window.stop()
The stop() method simulates the user clicking the Stop button on the browser.
It stops the browser from downloading and rendering the current page.
<html>
<body>
<form>
<input type=BUTTON value="Stop" onClick="window.stop()">
</form>
<P>
<table border=1color= bgcolor="#FF0000"><tr><td>
<img src="http://www.java2s.com/images/fake.gif"
width=468 height=60>
</td></tr></table>
</p>
</body>
</html>