Sujith Wayanad
Sujith Wayanad

Reputation: 543

adding menu to jquery accordion

Hi all here is my question

I am using jquery accordion in my website.

I was trying to add a small slide down menu in to the accordion head it is coming fine but the problem is whenever I am clicking the menu, my slide down mu is coming and the same time accordion is also expanding.

I don't want accordion to be activated when I am clicking the small menu icon

enter image description here

Upvotes: 2

Views: 207

Answers (1)

Jason P
Jason P

Reputation: 27022

Use stopPropagation, which will prevent the click from bubbling up to the accordion's click handler:

$('.small-menu-icon').click(function(e) {
    e.stopPropagation();
    // show menu
});

Upvotes: 2

Related Questions