If you're talking about capturing the event when a checkbox is checked, then "click" is correct.
$("#mycheckboxid").click(function() { dostuff; });----- Original Message ----- From: "voltron" <[EMAIL PROTECTED]>
To: "jQuery (English)" <jquery-en@googlegroups.com> Sent: Monday, September 24, 2007 2:04 PM Subject: [jQuery] Checkbox "checked" event
How do I detect if a checkbox is checked by a user? change or click would be wrong. Thanks