Select radio buttons
Description
The following code shows how to select radio buttons.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!--from w w w .j a va2 s .c o m-->
var c = $("input:radio", document.forms[0]).length;
alert(c);
});
</script>
</head>
<body>
<form>
<input type="radio" value="Option">
</form>
<form>
<input type="radio" value="Option">
</form>
<form>
<input type="radio" value="Option">
</form>
</body>
</html>