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
Chemistry,
6 months ago
Computer Science,
6 months ago
Computer Science,
11 months ago
Science,
11 months ago
Math,
1 year ago
Computer Science,
1 year ago
English,
1 year ago