Saved Bookmarks
| 1. |
How We Can Check/uncheck Radio Buttons In Jquery? |
|
Answer» Below is the CODE snippet to CHECK/uncheck radio BUTTONS: // Check #mycontrolid $('#mycontrolid').attr('checked', TRUE); // Uncheck #mycontrolid $('#mycontrolid').attr('checked', false); Below is the code snippet to check/uncheck radio buttons: // Check #mycontrolid $('#mycontrolid').attr('checked', true); // Uncheck #mycontrolid $('#mycontrolid').attr('checked', false); |
|