Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Something as simple as:

$("#div").addClass("error").delay(1000).removeClass("error");

doesn't seem to work. What would be the easiest alternative?

share|improve this question

4 Answers

up vote 57 down vote accepted

You can create a new queue item to do your removing of the class:

$("#div").addClass("error").delay(1000).queue(function(next){
    $(this).removeClass("error");
    next();
});
share|improve this answer
1  
My thought exactly :p – Romuald Brunet Mar 24 '10 at 18:06
1  
I like this option because it makes it easy to pass a reference to the jquery object thats used in the queued function, so it can be used in a more generic context (without hard coded names). – GrandmasterB Nov 1 '12 at 5:36

AFAIK the delay method only works for numeric CSS modifications.

For other purposes JavaScript comes with a setTimeout method:

window.setTimeout(function(){$("#div").removeClass("error");}, 1000);
share|improve this answer
5  
+1: Don't use Jquery for Jquery's sake. There are simple javascript solutions to many problems. – Joel Potter Mar 24 '10 at 17:56
1  
+1: Just the same as first comment. Simple JS also works fine some times. – wowpatrick Jun 11 '11 at 13:53
+1 for simplicity, but also +1'ed the accepted answer - as it pointed me out that the .queue() actually passes continuation object that must be called manually (the 'next()'). I've spent half of hour wondering why my chain of parameterless callbacks execute only the first one -- many examples on other sites use a single delay in chain and a parameterless callback, which is a bit misleading oversimplification of that mechanism – quetzalcoatl Dec 28 '11 at 17:58
Just a pedant note: setTimeout comes from the browser's window object (BOM). JavaScript (understood as ECMA Script) doesn't have that method. – corbacho Oct 5 '12 at 8:47

Delay operates on a queue. and as far as i know css manipulation (other than through animate) is not queued.

share|improve this answer

Try this:

function removeClassDelayed(jqObj, c, to) {    
    setTimeout(function() { jqObj.removeClass(c); }, to);
}
removeClassDelayed($("#div"), "error", 1000);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.