Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript ScrollTo not working in Firefox? Reply To: ScrollTo not working in Firefox?

#194548
digitalmark
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;
});