radio

UK[ˈreɪdiəʊ] US[ˈreɪdioʊ]

n. Radio; radio; radio broadcasting station; radio transceiver

vt.& vi. Use radio to send messages; make radio broadcasts; use X-rays to take pictures

jquery radio selector syntax

Function:: The radio selector selects <input> elements of type radio.

Syntax: $(":radio")

jquery radio selector example

<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $(".btn1").click(function(){
    $(":checkbox").hide();
  });
});
</script>
</head>
<body>
<form action="">
I have a bike:
<input type="checkbox" name="vehicle" value="Bike" />
<br />
I have a car:
<input type="checkbox" name="vehicle" value="Car" />
<br />
I have an airplane:
<input type="checkbox" name="vehicle" value="Airplane" />
</form>
<button class="btn1">Hide Checkboxes</button>
</body>
</html>
Run instance »

Click the "Run instance" button to view the online instance