Video preload Property - how to set different property values: - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Video

Description

Video preload Property - how to set different property values:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<button onclick="myFunction('none')">Video without preload</button>
<button onclick="myFunction('auto')">Video with preload</button>
<br>

<script>
function myFunction(p) {
    var x = document.createElement("VIDEO");
    x.setAttribute("controls", "controls");
    var y = document.createElement("SOURCE");
    y.setAttribute("src", "your.mp4");
    y.setAttribute("type", "video/mp4");
    x.appendChild(y);/*w w w  . j  a va 2s  .c  o  m*/
    var z = document.createElement("SOURCE");
    z.setAttribute("src", "your.ogg");
    z.setAttribute("type", "video/ogg");
    x.appendChild(z);

    // Set the preload property:
    x.preload = p;

    document.body.appendChild(x);
}
</script>

</body>
</html>

Related Tutorials