Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using bootstrap for a responsive navigation. To make it work with collapsing submenus, which it doesn't do by standard, I added some display:block & display:none rules as css overwrites from a different thread.

You can see the effect in this fiddle.

This works great for as long as there is only one sub-level present. I wanted to make it work for a second sub-menu. Since bootstrap.js adds a class="open" to the clicked <li class="dropdown>, the "open" class disappears on the parent level (LVL2), which collapses LVL2 & LVL3 because the display:block depends on that class. (Check fiddle if this is too confused.)

So I decided to add openpapa to the LVL2 <li class="dropdown">, when you click a LVL3 <li class="dropdown">. The LVL2 then becomes <li class="dropdown openpapa">. With this extra class I just need to set display: block again and everything is fine.

Until I want to get it closed again!

This is my problem! I need to removeClass('openpapa') when I click the LVL2 list-item with the added openpapa class, or otherwise it just wont collapse ever again.

I tried it with

$('.openpapa').click(function(){
    $(this).removeClass('openpapa');
});​

which has absolutely no effect. I also tried to stick in e.preventDefault() in both function(e)s without success. I also read about .on() and .live() and failed just as much.

So now I'm here, after a bunch of hours of googling and reading stackoverflow with nothing but a stressed mind. I'm pretty sure the solution is quite simple as usual, I'm just too retarded to understand the thousand relations of externally written dynamic DOM :s

Thank you very much in advance as usual ♥

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.