Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery('#kotwicamenu a[href*="#"]:not([href="#"]):not([href*="#elementor-action"])').each(function () {
- const
- $current = jQuery(this),
- url = $current.attr('href'),
- filteredUrl = url.substring(url.indexOf('#'));
- if (filteredUrl.length) {
- const $el = jQuery(filteredUrl);
- if ($el.length) {
- $current.on('click', function (e) {
- e.preventDefault();
- window.rhye.components.Scroll.scrollTo({
- x: 0,
- y: $el.offset().top,
- duration: 800,
- easing: (pos) => window.rhye.components.Scroll.getEasingScroll(pos)
- });
- });
- }
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement