Created
November 15, 2018 14:44
-
-
Save akther80/afa048a012463a9aaf7f0230dcd7aa27 to your computer and use it in GitHub Desktop.
Techmarket - Clickable Navbar Primary parent menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'wp_enqueue_scripts', 'tm_child_enqueue_custom_js', 30 ); | |
function tm_child_enqueue_custom_js() { | |
ob_start(); ?> | |
jQuery(document).ready(function($){ | |
if (jQuery(window).width() >= 1025){ | |
$(".navbar-primary .dropdown-toggle").click(function () { | |
var addressValue = $(this).attr("href"); | |
location.href=addressValue; | |
console.log(addressValue ); | |
}); | |
} | |
}); | |
<?php | |
$inline_js = ob_get_clean(); | |
wp_add_inline_script( 'techmarket-scripts', $inline_js ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment