html - jQuery animate scrollTop not working with Firefox -
the following code skipping top in firefox, , works intended in chrome. i've read here on stackoverflow, firefox , ie need $('body,html')
in order work, it's still not. in chrome, works perfectly. tips why it's not?
$('body,html').animate( { scrolltop: 0 }, // animating ) { duration: 1000, // how fast animating easing: 'easeinoutexpo', // type of easing });
removing event.preventdefault();
code solved issue.
Comments
Post a Comment