I have a jQueryUI effect() animation that I want to repeat several times with a delay between each. When I simply chain them:
$("#id").effect("highlight").delay(1000).effect("highlight");
there's no delay between them (not sure why).
So I'm trying to use .queue() but it's new to me and I can't get the code right. What's the easiest way to do this?