When using the queue setting in jQuery.animate, are callbacks disabled?
I am having a problem getting my callbacks to fire when I use the queue option and wondered if this was normal.
- $("#someid").animate(cssopts, {duration:3000, queue:false},"easeOutExpo",function () {alert ("hello");});
does not callback, however this does:
- $("#someid").animate(cssopts,3000,"easeOutExpo",function () {alert ("hello");});
What am I doing wrong? Thanks in advance for your help.
Jase