Javascript examples for DOM HTML Element:Video
You can create a <video> element by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a VIDEO element</button> <script> function myFunction() {//from ww w. ja v a 2s . c o m var x = document.createElement("VIDEO"); if (x.canPlayType("video/mp4")) { x.setAttribute("src","movie.mp4"); } else { x.setAttribute("src","movie.ogg"); } x.setAttribute("width", "320"); x.setAttribute("height", "240"); x.setAttribute("controls", "controls"); document.body.appendChild(x); } </script> </body> </html>