If you want to animate the size of the images you can use:
jQuery('#imgID').animate({
width: newwidth,
height: newheight
});
or if you do not want to animate resizing just use
jQuery('#imgID').css({'width':'newwidth', 'height':'newheight'});
newheight and newwidth will be integers of any dimensions you want to give. i.e. 100px x 200px
source
share