You['d use the click event and test the checked state in the event handler
$('#myCheckBox').click (function () { var thisCheck = $(this); if (thischeck.is (':checked')) { // Do stuff } }); On Sep 24, 10:04 pm, voltron <[EMAIL PROTECTED]> wrote: > How do I detect if a checkbox is checked by a user? change or click > would be wrong. > > Thanks