1

I am playing with Twitter Bootstrap dropdowns menu and trying to change behavior of this part: when I click on the link with Dropdowns menu, I'll get the submenu. When I click into the displayed submenu, so the submenu will be hide.

I would like to have the submenu visible also that time, when I click into this submenu. How to do that?

Thanks in advance!

1 Answer 1

2

Try doing something like this.

$('.dropdown-menu a').click(function(){

   $('.dropdown-menu a').css({'display' : 'block' });

});

Or take a look at the plugin and see which function is hiding the menu when clicking the submenu link, and then tap into that using your own script.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.