The RadioNodeList interface represents a collection of radio elements in a <form> or a <fieldset> element.
<div id="interfaceDiagram" style="display: inline-block; position: relative; width: 100%; padding-bottom: 11.666666666666666%; vertical-align: middle; overflow: hidden;"><svg style="display: inline-block; position: absolute; top: 0; left: 0;" viewbox="-50 0 600 70" preserveAspectRatio="xMinYMin meet"><a xlink:href="/docs/Web/API/NodeList" target="_top"><rect x="1" y="1" width="80" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="41" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">NodeList</text></a><polyline points="81,25 91,20 91,30 81,25" stroke="#D4DDE4" fill="none"/><line x1="91" y1="25" x2="121" y2="25" stroke="#D4DDE4"/><a xlink:href="/docs/Web/API/RadioNodeList" target="_top"><rect x="121" y="1" width="130" height="50" fill="#F4F7F8" stroke="#D4DDE4" stroke-width="2px" /><text x="186" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">RadioNodeList</text></a></svg></div>
a:hover text { fill: #0095DD; pointer-events: all;}
Properties
The RadioNodeList interface inherits the properties of NodeList.
RadioNodeList.value- If the underlying element collection contains radio buttons, the
valueproperty represents the checked radio button. On retrieving thevalueproperty, thevalueof the currentlycheckedradio button is returned as a string. If the collection does not contain any radio buttons or none of the radio buttons in the collection is incheckedstate, the empty string is returned. On setting thevalueproperty, the first radio button input element whosevalueproperty is equal to the new value will be set tochecked.
Methods
The RadioNodeList interface inherits the methods of NodeList.
Specifications
| Specification | Status | Comments |
|---|---|---|
| HTML Living Standard The definition of 'RadioNodeList' in that specification. |
Living Standard | Initial definition |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
RadioNodeList | Chrome Full support 34 | Edge Full support 12 | Firefox Full support 33 | IE Full support Yes | Opera Full support Yes | Safari Full support 10 | WebView Android Full support Yes | Chrome Android Full support Yes | Firefox Android Full support 33 | Opera Android Full support Yes | Safari iOS Full support 9 | Samsung Internet Android Full support Yes |
value | Chrome Full support 34 | Edge Full support 18 | Firefox Full support 33 | IE Full support Yes | Opera Full support Yes | Safari Full support 10 | WebView Android Full support Yes | Chrome Android Full support Yes | Firefox Android Full support 33 | Opera Android Full support Yes | Safari iOS Full support 9 | Samsung Internet Android Full support Yes |
Legend
- Full support
- Full support
See also
- The
<form>,<fieldset>,<input>elements.
