Hi,
I use this code on click event of a checkbox:
var checkBox = jQuery(this).find("input[type='checkbox']");
//This is your checked value.
var checked = checkBox.prop("checked");
//Output to console to check it out.
console.log("checked = " + checked);
First time I click, it is check but it return false
second time I click it is uncheck but it return true.
Is this normal ?
Thanks
Sylvain