menu

Thursday, January 1, 2015

Radio Button Changing Check Property in JQuery

Radio Button .prop("checked") Property:

     You can use .prop("checked") property of a JQuery object to change check property of radio button. Here is an example.

Example:

<html>
 <head>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  <script>
   $(document).ready(function() {
    $('#myButton').click(function () { 
       if ($('#A').prop("checked")) {
 $('#A').prop("checked", false); 
 $('#B').prop("checked", true); 
}    
else if ($('#B').prop("checked")) {
 $('#A').prop("checked", true); 
 $('#B').prop("checked", false);
}
        return true;
     });   
    });
   </script>
  </head>
  <body>
    <input type="radio" name="rd" id="A" value="A_value" checked="true">A<br/>
    <input type="radio" name="rd" id="B" value="B_value">B
     <br/>
     <input type="button" id="myButton" value="change selection">
   </body>
</html> 

The screen will look like the following.


Radio Button Changing Check Property in JQuery
Figure 1


You can download the source code from here.

No comments:

Post a Comment