I'm using jQuery version 1.7.1 from Google CDN and have the following code:
$(menuInstance).delay(2000).removeClass('loading').html(ul);
However the delay is ignored and it moves straight onto my remove class and insert HTML. Any ideas why the delay is being ignored? Thanks

$(document).ready()block? – Miguel Ping Mar 26 '12 at 13:56removeClassalso does not use the effects queue. (Don't feel bad; we've all tried to usedelay()that way at some point.) – Blazemonger Mar 26 '12 at 13:59