cancel
Showing results for 
Search instead for 
Did you mean: 

Custom Icons not working in accordion

Former Member
0 Kudos

HI All,

I have recently added support for supplying custom icons to accordion.

I am able to add icons. But when I click on the icons, it expands/collapse the section. I want to prevent that.

Any idea how can I prevent the onClick event of accordion on newly added custom icons?

regards

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member189945
Contributor
0 Kudos

Hi,

Try to add jQuery event handler to the icon:

$('icon').click(function () {
  
return false;
});




Regards,

Kimmo