Javascript DOM HTML Embed width Property set both height and width

Introduction

Change the height and width of an embedded file to 100 pixels:

Click the button to change the height and width of the flash animation to 100 pixels.

View in separate window

<!DOCTYPE html>
<html>
<body>

<embed id="myEmbed" src="video.mp4" width="200" height="200" style="border:1px solid">
<button onclick="myFunction()">Test</button>

<script>
function myFunction() {/*from   w w  w. jav a 2s .  c o m*/
  document.getElementById("myEmbed").height = "100";
  document.getElementById("myEmbed").width = "100";
}
</script>

</body>
</html>



PreviousNext

Related