Server IP : 162.213.251.212 / Your IP : 3.145.64.2 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/./www/PIQTV/wp-content/themes/woodmart/js/scripts/elements/ |
Upload File : |
/* global woodmart_settings */ (function($) { woodmartThemeModule.buttonSmoothScroll = function() { $('.wd-button-wrapper.wd-smooth-scroll a').on('click', function(e) { e.stopPropagation(); e.preventDefault(); var $button = $(this); var time = $button.parent().data('smooth-time'); var offset = $button.parent().data('smooth-offset'); var hash = $button.attr('href').split('#')[1]; var $anchor = $('#' + hash); if ($anchor.length < 1) { return; } var position = $anchor.offset().top; $('html, body').animate({ scrollTop: position - offset }, time); }); }; $(document).ready(function() { woodmartThemeModule.buttonSmoothScroll(); }); })(jQuery);