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({ \
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:
disabled
checked
prop
$('#checkbox').prop('checked'); // -> true/false $('#checkbox').prop('disabled'); // -> true/false