Home › Forums › JavaScript › ScrollTo not working in Firefox? › Reply To: ScrollTo not working in Firefox?
January 28, 2015 at 2:01 pm
#194548
Participant
To make it work in FF, I replaced this:
$(“#toTop”).click(function(){
event.preventDefault();
$(“html, body”).animate({scrollTop:0},”slow”);
});
with this:
$(“#toTop”).on(‘click’,function(){
$(“html, body”).animate({scrollTop:0},”slow”);
return false;
});