Computer Science, asked by devipriya6411, 11 months ago

What is the usage of an abort event in JavaScript?

Answers

Answered by blasticurita
0

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

Similar questions