Diego Segura
Diego Segura

Reputation: 1033

Toggle <select> tag with chrome DevTools

Is there any way to keep open a menu with Chrome DevTools?

Select open:

enter image description here

Upvotes: 13

Views: 6040

Answers (1)

Konrad Dzwinel
Konrad Dzwinel

Reputation: 37903

These selects are native OS components, there seems to be no way to control them from DevTools.

What you can do is add multiple attribute to your select (right click on the node and choose "Add attribute"). This will allow you to comfortably style option elements.

select with <code>multiple</code> attribute

Upvotes: 8

Related Questions