If the checkbox is checked, then I only need to get the value as 1; otherwise, I need to get it as 0. How do I 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 is checked, then I only need to get the value as 1; otherwise, I need to get it as 0. How do I do this using jQuery?
$("#ans").val() will always give me one right in this case:
<input type="checkbox" id="ans" value="1" />
Stefan Brinkmann's answer is excellent, but incomplete for beginners (omits the variable assignment). Just to clarify:
// this structure is called a ternary operator
var cbAns = ( $("#ans").is(':checked') ) ? 1 : 0;
It works like this:
var myVar = ( if test goes here ) ? 'ans if yes' : 'ans if no' ;
Example:
var myMath = ( 1 > 2 ) ? 'yes' : 'no' ;
alert( myMath );
Alerts 'no'
If this is helpful, please upvote Stefan Brinkmann's answer.
I've found the same problem before, hope this solution can help you. first, add a custom attribute to your checkboxes:
<input type="checkbox" id="ans" value="1" data-unchecked="0" />
write a jQuery extension to get value:
$.fn.realVal = function(){
var $obj = $(this);
var val = $obj.val();
var type = $obj.attr('type');
if (type && type==='checkbox') {
var un_val = $obj.attr('data-unchecked');
if (typeof un_val==='undefined') un_val = '';
return $obj.prop('checked') ? val : un_val;
} else {
return val;
}
};
use code to get check-box value:
$('#ans').realVal();
you can test here
function chkb(bool){
if(bool)
return 1;
return 0;
}
var statusNum=chkb($("#ans").is(':checked'));
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.
function chkb(el){
if(el.is(':checked'))
return 1;
return 0;
}
var statusNum=chkb($("#ans"));
I've came through a case recently where I've needed check value of checkbox when user clicked on button. The only proper way to do so is to use prop() attribute.
var ansValue = $("#ans").prop('checked') ? $("#ans").val() : 0;
this worked in my case maybe someone will need it.
When I've tried .attr(':checked') it returned checked but I wanted boolean value and .val() returned value of attribute value.