Animate Scroll Not Working In Firefox? April 01, 2024 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 JugaChecking Image Size Using Jquery Validation Not WorkingJquery Math Operations For My DatagridHow Do I Use Logo Plugin In Videojs Share You may like these postsHow Can I Add A Font-awesome Icon To A Textarea?Bootstrap 3 Fixed Top Navbar 'flickering' On Mobile Scrolling Using Jquery One-page Scrolling EffectCss Bootstrap Close Modal And Go To LinkBootstrap 4 Beta 2. How To Make Equal Width Li Inside Different Col Which Are Stretched To Screen Width? Post a Comment for "Animate Scroll Not Working In Firefox?"
Post a Comment for "Animate Scroll Not Working In Firefox?"