Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

html radio label clickable

<!-- Wrap elements without giving them each an ID -->
<label>
   <input type="radio" name="mode" value="create">
   <i>create table</i>
</label>

<!--You can use <label> elements, which are designed to do exactly that-->
<input type="radio" id="radCreateMode" name="mode" value="create" />
<label for="radCreateMode"><i>create table</i></label>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #html #radio #label #clickable
ADD COMMENT
Topic
Name
7+8 =