Thanks guys. But would´nt a click event also fire when I uncheck the checkbox? I would have to use both methods that guys suggested then?
On Sep 25, 1:02 am, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > 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