36

Hy!

When Uploadify send the file to the action, I need to know if the checbox is checked or not, so I did:

    $('#uploaded').uploadify({
        'uploader': '/uploadify.swf',
        'cancelImg': '/cancel.png',
        'script': '/Interaction/Upload',
        'multi': true,
        'auto': false,
        'method': 'post',
        'scriptData': {'Checkbox': $('#checkbox').val()},
    });

But I aways get an "on" value. No matter if is checked or not.

can anyone help? Tks.


UPDATE:

I realized that uploadify is getting the checkbox when the page is loaded.This means that if I change the checkbox (or any other type of input) the uploadify will get the initial value, in this case, "checkbox = false".

How can I send a form with uploadify?

Tks.

Thiago
  • 1,457
  • 2
  • 24
  • 40

9 Answers9

64

try $('#checkbox').is(':checked')

MikeM
  • 26,249
  • 4
  • 61
  • 79
29

A checkbox's value is always 'on'. The HTML Form sends the value to the server only if the checkbox is checked. If the box is not checked, then the request parameter will be absent. This semantics is apparently to minimize the differences between checkboxes and radio buttons.

The HTML Form implements the following semantics:

if ($('#mycheckbox').is(':checked')) {
    payload['mycheckbox'] = $('#mycheckbox').val();
}

You can either mimic this semantics in Ajax or send the 'checked' flag directly as follows:

payload['mycheckbox'] = $('#mycheckbox').is(':checked');

I'd recommend mimic'ing the HTML Form semantics. Irrespective of what the client does, I'd recommend the following in the server code:

if mycheckbox param exists and its value is either 'true' or 'on' {  // pseudo code of course
    // mycheckbox is checked
} else {
    // mycheckbox is unchecked
}

Hope this explanation helps.

Gopi Reddy
  • 650
  • 6
  • 9
  • 1
    The on semantics are very confusing... I hope it made someone's life easier! Even a disabled checkbox has a value of "on"... – Derek Litz Sep 05 '13 at 23:01
  • Very confusing implementation - but this answer helped me understand why val() always returns 'on' for checkboxes. – Daniel Howard Mar 01 '14 at 18:00
18

There is a pretty handy way to check all these element properties like disabled, checked, etc. with the prop function. This also converts it to boolean:

$('#checkbox').prop('checked'); // -> true/false
$('#checkbox').prop('disabled'); // -> true/false
Gabriel Petrovay
  • 17,013
  • 19
  • 79
  • 142
10

Try this

$('#checkbox').is(':checked')
ShankarSangoli
  • 67,648
  • 11
  • 84
  • 121
7

Change:

$('#checkbox').val()

to

$('#checkbox').attr('checked')
rossipedia
  • 47,308
  • 9
  • 81
  • 87
1

I just had the same problem and found this solution:

if($("input[name='yourcheckbox']").is(':checked')) {
   console.log('chb checked');
} else {
   console.log('chb not checked');
}
nimrod
  • 5,408
  • 25
  • 76
  • 143
0

Use:

$('#checkbox').attr('checked')
Mark Pope
  • 10,768
  • 10
  • 46
  • 57
0

var checkboxValue = $('#id').prop('checked');

-1

You can give

if(jQuery(this).attr('checked')){ // u have to use this selector according to your function it may be .click .live or else..

Thanks

Javascript Coder
  • 5,209
  • 7
  • 38
  • 82