HTML | DOM onsuspend Event
The onsuspend event in HTML DOM occurs when the browser not getting media data. This event occurs when the media loading is suspended. This can happen when the download has completed, or it has been paused because of some interruption.
Events that occurs when some kind of disturbance comes in the loading process:
- onabort
- onemptied
- onerror
- onstalled
Syntax:
- In HTML:
<element onsuspend="Script">
- In JavaScript:
object.onsuspend = function(){Script};
- In JavaScript, using the addEventListener() method:
object.addEventListener("suspend", Script);
Supported Tags:
- audio
- video
Example: Using the addEventListener() method
<!DOCTYPE html> < html > < head > < title > HTML DOM onseeked Event </ title > </ head > < body > < center > < h1 style = "color:green" >GeeksforGeeks</ h1 > < h2 >HTML DOM onseeked Event</ h2 > < video controls id = "videoID" > < source src = type = "video/mp4" > </ video > </ center > < script > document.getElementById( "videoID").addEventListener("suspend", GFGfun); function GFGfun() { alert( "Media loading suspended"); } </ script > </ body > </ html > |
chevron_right
filter_none
Output:
Before:
After:
Supported Browsers: The browsers supported by HTML DOM onsuspend Event are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Apple Safari
- Opera