• Hi all,
    Here is my problem. I have 4 navigation buttons: Home, About, Events, and Contact. Under Events button, I have a drop-down menu. Normally, I would click on Events button, and it will go to the Events Intro page. What if I don’t want to show Events Intro page anymore. How can I disable Events button without disable the drop-down?

    P.S. I know it’s a weird setup, but the client is the boss, eh!

    Thanks for help!!!
    D.

Viewing 3 replies - 1 through 3 (of 3 total)
  • A link to your site might help…

    did you have any identifier for that button ?

    maybe try this:

    jQuery(document).ready(function(){
      jQuery('a.event_button').click(function(){
        return false;
      });
    });

    the a.event_button is <a href="blablabal" class="event_button">Event</a>

    Thread Starter orangewood88

    (@orangewood88)

    Unfortunately, I don’t have a link nor an identifier at this point.
    Is there a way to create a function to tell the EVENT ID to jump to a certain page, like Home? That would solve my problem as well…?

    Thanks for the help!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Disable one of the navigation button?’ is closed to new replies.