I have this code.
$(document).ready(function() { $(\'#box\').hide(); $(window).bind(\'scroll\', function(){ if($(this).scrollTop() > 200) { $(
Use the stopdocs function
You simply need to call $('#box').stop(true,true).fadeIn(300); and $('#box').stop(true,true).fadeOut(300); respectively
$('#box').stop(true,true).fadeIn(300);
$('#box').stop(true,true).fadeOut(300);