To double the width of the img, i can do this in jQuery:
<img src='blah.jpg' id='pic' />
$('#pic').height($(this).height()*2);
that works fine, but i really like to use shorthand assignments like:
var count = 5;
count *= 2; // to get 10.
Since element.height returns the height function in jQuery, i can't use shorthand assignments. Is there no way to do shorthand assignments in jQuery for element attributes?