I have three radio buttons in a search group: Zip, City and County. How can I toggle the checked states of all radio buttons in the group when one of them is clicked?
<input id="SC5_zipR" type="radio" value="" />
<input id="SC5_cityR" type="radio" value="" />
<input id="SC5_countyR" type="radio" value="" />
$("#SC5_zipR").prop('checked', true); //default checked value for zip code option
I am using Jquery 1.6.2. Thank you in advance, Attila
