Animation in .hover function gets stuck when calling fancybox
I am sliding div.description out and it contains a link to the fancybox plugin. When the link is clicked the mouseout animation fires half way. I've tried .stop(false,false) and ever true/false permutation as well. Am I missing something?
- //Show & Hide text on hover
- $('#image_container li').hover(function(){
- $(this).children('div.description').stop().animate({"left":"380px"},500);
- $(this).children('img.bw').stop().animate({"opacity":"0"}, "fast");
- },function(){
- $(this).children('div.description').stop().animate({"left":"120px"},500);
- $(this).children('img.bw').stop().animate({"opacity":"1"}, "fast");
- });
I know this issue is almost identical to:
http://forum.jquery.com/topic/jquery-animation-gets-stuck but that solution didn't work, not really sure it solved all of his problems too though.