Animate Scroll Not Working In Firefox? August 05, 2023 Post a Comment html: Solution 1: Try this code$(document).ready(function () { // hide #back-top first $("#back-top").hide(); // fade in #back-top $(function () { $(window).scroll(function () { if ($(this).scrollTop() > 100) { $('#back-top').fadeIn(); } else { $('#back-top').fadeOut(); } }); // scroll body to 0px on click $('#topanimated a').click(function () { $('body,html').animate({ scrollTop: 0 }, 800); returnfalse; }); }); }); CopySet This ID in The Button id="back-top" Baca JugaWrap Each Word In An Html ElementGet All Links Inside Iframe And Add Blank Target AttributeHow To Add Labels To Bootstrap Dialog Footer Share You may like these postsBootstrap Dropdown Menu Within A Responsive TableDatetimepicker Calendar Is Not Open In Correct PositionDifferent Bootstrap Css Files?My Css3 Animation Not Working On Mozilla Post a Comment for "Animate Scroll Not Working In Firefox?"
Post a Comment for "Animate Scroll Not Working In Firefox?"