Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to switch the var "act" withing my function dynamically. I looks OK, but for some reason I keep on getting the same act whether I check the checkbox or uncheck it... Can someone please take a look and see what I'm missing here?

$(".chkbx").change(function() {
    if($(this).attr("checked", true)) {
        var act = "remFromSessionSingleID";
    } else {
        var act = "addToSessionSingleID";
    }

    SelectedContactsInSession(act, $(this).val());          
});

function SelectedContactsInSession(act, id) {           
    $.ajax({
        url: "actions.php",
        type: "POST",
        data: "op="+act+"&contID="+id
    });
}
share|improve this question

3 Answers

up vote 2 down vote accepted

You're setting the checked attribute to true by passing it to attr, which then returns a jQuery object (that will always be truthy). Just get the attribute instead:

if($(this).attr("checked")) {

A better way is to use is:

if($(this).is(":checked")) {
share|improve this answer
Got it. Also had to change "change" to "click", did not work otherwise for some reson... – santa Sep 17 '11 at 17:19

$(this).attr("checked", true) is setting the value of $(this).attr('checked') to true every time. Remove the 2nd argument.

Also, if you use $(this).prop('checked'), it will normalize the result to boolean, while .attr() returns "checked" or undefiend:

$(".chkbx").change(function(){
    console.log($(this).attr('checked'), $(this).prop('checked'));
});

> checked true
> undefined false
share|improve this answer

You're not getting the value, you're setting it to true--that's what happens if you pass a second parameter to attr.

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.