Sometimes below code not work in Mozilla
// Animation to top
$(‘html,body’).animate({scrollTop:0}, ‘slow’);
Reasons:
Check html, body “overflow” in CSS
remove below CSS
html, body{
overflow: hidden;
}
Sometimes below code not work in Mozilla
// Animation to top
$(‘html,body’).animate({scrollTop:0}, ‘slow’);
Reasons:
Check html, body “overflow” in CSS
remove below CSS
html, body{
overflow: hidden;
}