What is the usage of an abort event in JavaScript?


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.

Example

<!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>

Updated on: 21-May-2020

277 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements