I have two radio buttons on a html panel I wish to set the checked values of these using jquery and have attempted several methods without success the html looks like:
Code: Select all
####
Fault
OK if I use:
$("#radio").find("input").attr("checked", false).checkboxradio("refresh");
All radio buttons are set to unchecked if I try to do the same with the ID of the individual buttons it fails! What is the correct approach?