Skip to content

Instantly share code, notes, and snippets.

@akther80
Created January 7, 2019 05:39
Show Gist options
  • Save akther80/88a2e1ae25e552a0bdb47cc91c20871c to your computer and use it in GitHub Desktop.
Save akther80/88a2e1ae25e552a0bdb47cc91c20871c to your computer and use it in GitHub Desktop.
Techmarket - Clickable Primary navigation parent menu
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