Skip to content
Advertisement

Disable accordion open when clicked on select tag

I have select tag in title of accordion like below

JavaScript

When I click select tag , I dont want the accordion to open , I tried stopPropagation but selectbox is opening and closing immediately

JavaScript

Advertisement

Answer

You can achieve that by setting pointer-events to none with css.

JavaScript
JavaScript
JavaScript

If you want to catch onclick events add a parent container with display:contents and use it to instead of using the select tag directly.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement