HTML elements with a state

Viewed 13

Are there more HTML elements witch have a state property like these:

<details open>, <input type=checkbox checked>, <input type=radio checked> ?

1 Answers

defer

<script src="index.js" defer></script>

autoplay - controls - loop - muted

<video controls autoplay loop muted></video>
<audio controls autoplay loop muted></audio>

autofocus

<button autofocus></button>

defualt

  <track src="subtitles.vtt" default>

disabled - required

<input type="submit" disabled required>

these are ones that i had thought of there might be more here's a list of all attributes

Related