I have the following jquery code:
$j('#' + messageId).fadeTo(1000, .3).delay(3000).css("top", 20);
My expectation is that the following would happen when this ran:
- the messageId div fades over one second, down to
.3opacity - Nothing happens for 3 seconds
- The messageId div moves to 20 pixels from the top
Instead, there's no delay. Only steps 1 and 3 above happen, in reverse order, or in other words:
- The messageId
divimmediately moves - After moving, the message fades over one second
Note: what I really want to do for the final step is a remove() call, to get the element out of the DOM, but that also seemed to "fire" too soon, so I thought I'd try setting this css position.
Does the delay only delay subsequent effects, and not a subsequent css setting or a remove() call? Must I use the javascript setTimeout() function to accomplish my goal?