Javascript examples for DOM HTML Element:Video
The networkState property returns the current network state of the video.
Type | Description |
---|---|
Number | Represents the current network state of the video element: |
The following code shows how to get the current network state of the video:
<!DOCTYPE html> <html> <body> <video id="myVideo" width="320" height="240" controls autoplay> <source src="your.mp4" type="video/mp4"> <source src="your.ogg" type="video/ogg"> Your browser does not support the video tag. </video><br> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {/* w w w.j a v a 2s .c om*/ var x = document.getElementById("myVideo").networkState; document.getElementById("demo").innerHTML = x; } </script> </body> </html>