Programmer Question
Hello, I have this:
With:
#mydiv{ position:relative; }
When I execute:
$('#mydiv').css('top','500');
Is not working, I'm not getting errors at all.
Basically what I need to do is move (not animate) that DIV 500px up, is there any other way to do it?
Find the answer here
If you're moving it up, you need:
ReplyDelete$('#mydiv').css('top','-500px'); (I think)