Created
January 7, 2019 05:39
-
-
Save akther80/88a2e1ae25e552a0bdb47cc91c20871c to your computer and use it in GitHub Desktop.
Techmarket - Clickable Primary navigation 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){ | |
$(".primary-navigation .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