<html> <head> <title>onAbort</title> </head> <script type="text/javascript"> function ChangeImage() { window.img.execCommand('Stop'); } </script> <body> <IMG src="http://img-fotki.yandex.ru/get/5311/82909816.11a/0_78a36_17161dc7_-1-orig" name="img1" onabort="alert('Загрузка картинки прекращена пользователем') width="200px" height="140px""> <br> <input type='button' name='stop' value='Stop' onClick='ChangeImage()'> </body> </html>
img.addEventListener('abort', function(){ alert('ololo') })