AUTO-RETRACT MOBILE MENU ON ANCHOR CLICK
jQuery(document).ready(function($) { ‘use strict’; // 1. GHOST CLICK & CUSTOM SCROLL (The Ultimate Bypass) $(document).on(‘click touchend’, ‘.off-menu a[href*=”#”]:not([href=”#”])’, function(e) { var href = $(this).attr(‘href’); var targetId = href.substring(href.indexOf(‘#’)); var $target = $(targetId); // If the target section exists on this…Continue reading