I was trying to solve this problem, but my reset button just can't uncheck the radio button..... :( Hope experts here can help me to solve my problem. Thx!!!!
just created the fiddle http://jsfiddle.net/8GLPC/
<input type="radio" class="radio" name="r[][9]" id="id_19" value="1|9"> <label for="id_19">Choice 1</label> <input type="radio" class="radio" name="r[][9]" id="id_29" value="2|9"> <label for="id_29">Choice 1</label> <button class="reset1" value="9">Reset</button> $(document).ready(function(){ $(".radio") .button(); $(".reset1") .button() .click(function(){ var radio = $('[name="r[][9]"]'); radio.prop('checked',false); return false; }) });