How can I delay a CSS change in jquery? Here is my code:
$(\"document\").ready(function() { $(\".pressimage img\").mouseenter(function() { $jq(this)
Try the following.
jQuery.fn.extend({ qcss: function(map){ $(this).queue(function(next){ $(this).css(map); next(); }); return this; } });