Hi everyone, so I have this image that I want to magnify on mouseover, so I have something like this.
$('#something').animate({
width: bigger-than-now,
height: bigger-than-now
});
but I found that this always expand toward bottom-right, when I want it to expand toward bottom-left? does anyone know how I can accomplish this? thanks in advance!
i.e. Well, I do find that it would do bottom-left if i set the css position to absolute, and top, right=0. but then I would like relative positioning in my case.