If the checkbox values is checked then only i need to get the value as 1 else i need to get it as 0 ,how to do this using jquery
$("#ans").val() will always give me one right in this case
<input type="checkbox" id="ans" value="1" />
|
If the checkbox values is checked then only i need to get the value as 1 else i need to get it as 0 ,how to do this using jquery
|
||||
|
|
|
You can do a few different things, but basically you can use |
|||||||
|
|
Per comment, use
|
|||||
|
|
Use:
|
|||||
|
statusNum will equal 1 if the checkbox is checked, and 0 if it is not. EDIT: You could add the DOM to the function as well.
|
||||
|
|
|
I've found the same problem before, hope this solution can help you. first, add a custom attribute to your checkboxes:
write a jQuery extension to get value:
use code to get check-box value:
you can test here |
|||
|
|
|
// try this
//here flag is true if checked otherwise false var flag=$('#ans').Attr('checked'); //again this will make cheked $('#ans').Attr('checked',true); |
||||
|
|