This script is not working in Mozilla
$('body').animate({ scrollTop: $("body").find(".Pickup").offset().top - 200 }, 'slow');
What i have to do?
This script is not working in Mozilla
$('body').animate({ scrollTop: $("body").find(".Pickup").offset().top - 200 }, 'slow');
What i have to do?
Firefox places the overflow at the html level, unless specifically styled to behave differently.
To get it to work in Firefox, use
$('body,html').animate( ... );