Hi I have a div that I want to change some values in, when I click a button.
If I click on
<button id="image320x150">320 x 150</button>
then I want to change the width to 100 and the height value to 200 in the div.
and if I click on:
<button id="image320x200">320 x 200</button>
then I want to change the width to 50 and the height value to 100 in the div.
<div style="width:200px;height:287.5px;overflow:hidden;">
And I want the div to have the original values at first. Thanks a lot!