- $('a[href*="#"]').on('click', function(event) {
- // Prevent the #hash click action on tabs!!!
- event.preventDefault();
- } else {
- event.preventDefault();
- }
- });
- //console.log(jQuery(target));
- speed = (typeof speed !== 'undefined') ? speed : 1200;
- // Check if the target is a full URL or just a hash
- if (target.startsWith('#')) {
- // It's a hash, scroll to the anchor
- }, speed, 'easeInOutExpo');
- }
- } else {
- // It's a full URL, navigate to the link
- window.location.href = target;
- }
- }
Recent Pastes