Something as simple as:
$("#div").addClass("error").delay(1000).removeClass("error");
doesn't seem to work. What would be the easiest alternative?
|
|
|
You can create a new queue item to do your removing of the class:
|
|||||||||
|
|
AFAIK the delay method only works for numeric CSS modifications. For other purposes JavaScript comes with a setTimeout method:
|
|||||||||||||
|
|
Delay operates on a queue. and as far as i know css manipulation (other than through animate) is not queued. |
|||
|
|
|
Try this:
|
|||
|
|