HTMLOptionElement: defaultSelected property
The defaultSelected
property of the HTMLOptionElement
interface specifies the default selected state of the element. This property reflects the <option>
element's selected
attribute. The presence of the selected
attribute sets the defaultSelected
property to true
.
Value
A boolean.
Examples
js
const optionElement = document.getElementById("water");
console.log(optionElement.defaultSelected);