Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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" />
share|improve this question

9 Answers

up vote 249 down vote accepted

You can do a few different things, but basically you can use .is(':checked') to determine whether or not it's checked, and then set your value accordingly.

More information here.

share|improve this answer
nice one, saved my time and works – Forhad Nov 14 '12 at 13:54
1  
+1 this works and is easy – Andreas Lyngstad Dec 15 '12 at 20:11

$("ans").attr('checked') will tell you if it's checked. You can also use a second parameter true/false to check/uncheck the checkbox.

Per comment, use prop instead of attr when available. E.g:

$("ans").prop('checked')
share|improve this answer
11  
+1. also, starting from jquery version 1.6 it's better to use prop and not attr – sJhonny Jul 19 '11 at 12:41

Just use $(selector).is(':checked')

It returns a boolean value.

share|improve this answer

Use:

$("#ans option:selected").val()
share|improve this answer
if it's not selected, then the first part wouldn't return anything, right? – xaxxon Jan 27 '11 at 6:06
@Senthil, OP is not asking to get the value of a selected checkbox, rather return 1 if it is selected – Om Shankar Jul 29 '12 at 15:51

You can also use:

$("#ans:checked").length == 1;
share|improve this answer
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"));
share|improve this answer
// use ternary operators
$("#ans").is(':checked') ? 1 : 0;
share|improve this 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

share|improve this answer

// try this

$('input:checkbox:checked').click(function(){
var val=(this).val(); // it will get value from checked checkbox;
})

//here flag is true if checked otherwise false

var flag=$('#ans').Attr('checked');

//again this will make cheked

$('#ans').Attr('checked',true);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.