I want the following button (and it's image) to change size when I click it. The dialog is showing, but the size is not changing..
<html>
<input type="image" src="pacman.png" onClick="
alert('test');
this.height='200px'; // change de button size
// this.image.height='200px'; // not sure if this line will work..
"/>
</html>
Need be in javascript, no in the css, becouse I'll make an animation later..