javascript - jQuery resizable synch resize -
i ask if how can fix resizable jquery. want if resize parent element resize children inside of parent element. here's current code:
<div id="img_holder" style="width:100px;height:120px;float:left;margin:5px;"> <a href="#" target="_blank" class="thumbnail" style="text-decoration:none;height:120px;"> <img src="suits.jpg" style="height:110px !important;" /> </a> </div> $("#img_holder").resizable({alsoresize: "#img_holder a, #img_holder img"});
here's output when resizing
thank you!
the anchor , images in example have preset height
, not going resize height larger set height. notice img height set using !important
.
Comments
Post a Comment