http://jsfiddle.net/nicktheandroid/ZSvHK/
I need help figuring out how to get this right, problems listed below. If you could suggest any improvements, that'd be great.
I have multiple divs, each div has it's own trigger(button).
Only one menu can be open at a time, so if I have DIV1 shown, and I click the trigger for DIV2: then DIV1 should close, and DIV2 should open.
If the DIV is being animated when I click the trigger(button), then don't do anything, to keep from queuing up and having other problems.
If the DIV is open and I click on anything outside of the DIV, the DIV closes, which is correct behavior. Check out the example.
My problem:
is that if I have
DIV2open, and I click the the trigger(button) forDIV1,DIV2doesn't close like it should.When double clicking the button(when DIV is hidden, click, then while it's still animating click again) the DIV SlidesDown like it's supposed to, but then it slidesUp. The button shouldn't accept anything while the DIV is animating, AKA I don't want it to queue like that. And in the future I wont be using a button for the trigger, so disabling wont work.