Question:
How to access the value of the ASP.Net RadioButtonList in jQuery ?
Answer:
$('#radioButtonListClientId').find('input[checked]').val();
Remember "radioButtonListClientId" referred above is the ClientID and not the ID of the server control.
Happy Coding!
ravi
0 comments:
Post a Comment