JQuery How to Uncheck A radio button
Posted
by user281867
on Stack Overflow
See other posts from Stack Overflow
or by user281867
Published on 2010-04-06T23:30:53Z
Indexed on
2010/04/06
23:33 UTC
Read the original article
Hit count: 268
jQuery
|JavaScript
Hi,
I have a list of data with a radio button. Users must select a date to edit. Then I load external dynamic form into a [div] using the jquery load() function. var ID = $('input[name=BookItem]:checked').val(); $("#EditFormWrapper").load("callEditData.cfm? ID="+ID);
I am having trouble uncheck the radio button when user click on cancel button (editBTNcancel). The “BookItem” radio button is on the already on the webpage before the load() call. Here s my script: $("#editBTNcancel").live("click", function(event){ event.preventDefault(); $("#EditFormWrapper").slideUp("fast").empty(); //$('.TOR2Hours').removeAttr('checked'); $('.TOR2Hours').attr('checked', false); }); I hope I clearly state my problem, any suggestion would be greatly appreciated!
© Stack Overflow or respective owner