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({ \
Change:
$('#checkbox').val()
to
$('#checkbox').attr('checked')
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