Change the height of an image : Image Img « HTML « JavaScript DHTML
- JavaScript DHTML
- HTML
- Image Img
Change the height of an image
<html>
<head>
<script type="text/javascript">
function setHeight(){
var x=document.images
x[0].height="250"
}
</script>
</head>
<body>
<img src="http://www.java2s.com/style/logo.png" width="107" height="98" />
<form>
<input type="button" onclick="setHeight()" value="Change image height">
</form>
</body>
</html>
Related examples in the same category