here is my code:
$('.heres_why').mouseover(function(event) {
$('.join_reasons').css("left", (event.pageX - 235));
$('.join_reasons').stop().show("slow");
});
$('.heres_why').mouseout(function() {
$('.join_reasons').stop().hide("slow");
});
Know if i mouseover and then mouseout halfway though the animation, it does
stop and go back like it should. But then when i mouseover the object
again, it only goes as far as i stop it before(in the case i explained, half
way). Is this the excepted result? I would assume it would go the whole
way (unless i mouse out).
--
View this message in context:
http://www.nabble.com/.stop%28%29-bug--tf4431667s15494.html#a12642877
Sent from the JQuery mailing list archive at Nabble.com.