Skip to content
Advertisement

Identify if select tag holds value due to selected attribute in options

In my understanding, a select value will set default value in 2 ways:

  1. Check if “selected” attribute for any option
  2. Else place first option as selected
JavaScript

Is there any way through which I can find out by which step(above mentioned) is the default value set for this select

Advertisement

Answer

You can loop through the options and check if there’s a selected attribute.

JavaScript

Note: Selecting from dropdown doesn’t add the selected attribute so this code will be true even after user chooses an option.

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