Javascript examples for DOM HTML Element:Video
Video poster Property - Get the URL of the poster image:
<!DOCTYPE html> <html> <body> <video id="myVideo" width="320" height="240" poster="http://java2s.com/resources/a.png" controls> <source src="your.mp4" type="video/mp4"> <source src="your.ogg" type="video/ogg"> Your browser does not support the video tag. </video>//from w w w. j ava 2 s . c om <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myVideo").poster; document.getElementById("demo").innerHTML = x; } </script> </body> </html>