Use the on abort event to abort the loading of an image. You can try to run the following code to learn how to implement an abort event in JavaScript.
<!DOCTYPE html> <html> <body> <script> function abortFunc() { alert('Error- Loading of the image aborted'); } </script> <img src="/videotutorials/images/tutor_connect_home.jpg" onabort = "abortFunc()"> </body> </html>