EN
HTML - select radio input on click on related text
3 points
In this article, we would like to show you how to select a radio input on click on the related text in HTML.
Quick solution:
xxxxxxxxxx
1
<input type="radio" name="field-name" value="some value ..." id="some-id" />
2
<label for="some-id" >Some label ...</label>
OR:
xxxxxxxxxx
1
<label>
2
<input type="radio" name="field-name" value="some value ..." />
3
<span>Some label ...</span>
4
</label>
In this example, we use input
and label
elements with id
-for
relation to enable radio input selection on the related text click (label text).
xxxxxxxxxx
1
2
<html>
3
<body>
4
<input type="radio" name="group-name" value="value-1" id="one" checked />
5
<label for="one" >Value 1</label>
6
<br />
7
<input type="radio" name="group-name" value="value-2" id="two" />
8
<label for="two" >Value 2</label>
9
</body>
10
</html>
Note:
If the text inside the
label
element wasn't bound by anid
-for
relation, then the text could not be clicked.
In this example, we present how to enable radio input selection when you click the related text by wrapping the input
and span
elements with the label
. This solution doesn't need the id
and for
attributes to specify the relation.
xxxxxxxxxx
1
2
<html>
3
<body>
4
<label>
5
<input type="radio" name="group-name" value="value-1" checked />
6
<span>Value 1</span>
7
</label>
8
<br />
9
<label>
10
<input type="radio" name="group-name" value="value-2" />
11
<span>Value 2</span>
12
</label>
13
</body>
14
</html>
Note: by putting the text (e.g
<span>Value 1</span>
) outside thelabel
element, you won't be able to click the related text anymore.