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

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -