How Can I make value in "%". I want to get dive show before 200% of the site and hide after. Thanks for any advice!
$(window).scroll(function() {
if ($(this).scrollTop() > {percent:200})
{
$('.box').fadeOut();
}
else
{
$('.box').fadeIn();
}
});