What is the usage of an abort event in JavaScript?
Answers
Answered by
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
Math,
7 months ago
Physics,
7 months ago
Chemistry,
7 months ago
Computer Science,
1 year ago
Science,
1 year ago
Math,
1 year ago
Computer Science,
1 year ago
English,
1 year ago