onloadstart Event
Clash Royale CLAN TAG#URR8PPP
googletag.cmd.push(function() googletag.display('div-gpt-ad-1422003450156-2'); );
onloadstart Event
❮ DOM Events
❮ ProgressEvent
Example
Execute a JavaScript when the video is starting to load:
<video onloadstart="myFunction()">
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The onloadstart event occurs when the browser starts looking for the
specified audio/video. This is when the loading process starts.
During the loading process of an audio/video, the following events occur, in
this order:
- onloadstart
- ondurationchange
- onloadedmetadata
- onloadeddata
- onprogress
- oncanplay
oncanplaythrough
Browser Support
The numbers in the table specify the first browser version that fully supports the
event.
Event | |||||
---|---|---|---|---|---|
onloadstart | Yes | 9.0 | Yes | Yes | Yes |
googletag.cmd.push(function() googletag.display('div-gpt-ad-1493883843099-0'); );
Syntax
In HTML:
<element onloadstart="myScript">
Try it Yourself »
In JavaScript:
object.onloadstart = function()myScript;
Try it Yourself »
In JavaScript, using the addEventListener() method:
object.addEventListener("loadstart", myScript);
Try it Yourself »
Note: The addEventListener() method is not supported in Internet Explorer 8 and earlier versions.
Technical Details
Bubbles: | No |
---|---|
Cancelable: | No |
Event type: | ProgressEvent |
Supported HTML tags: | <audio> and <video> |
DOM Version: | Level 3 Events |
More Examples
Example
Execute a JavaScript when the audio is starting to load:
<audio onloadstart="myFunction()">
Try it Yourself »
❮ DOM Events
❮ ProgressEvent