• Resolved Beginner

    (@sagar23)


    how to make the dropdown-menu-header clickable.(activate to clickable)
    now it is in toggle class, i want it to display the drop-down menu on hover.
    if i click on that(drop-down header), it should take me to that particular page.

Viewing 1 replies (of 1 total)
  • Theme Author WebHunt Infotech

    (@webhuntinfotech)

    Hello @sagar23,

    I think you are talking about parent menu clickable. Use below js for that

    jQuery('ul.nav li.dropdown a').click(function(e) {
            e.preventDefault();
            window.location.href = jQuery(this).attr('href');
     });

    Please use any custom js plugin or put above js code in js/custom.js file on line no 4.

    Thank You

Viewing 1 replies (of 1 total)

The topic ‘dropdown’ is closed to new replies.