[jQuery] Re: Yahoo Mail-like "Select All" check box (???)

2008-07-10 Thread iKnowKungFoo
This question, plus another on the DFW CFUG list prompted me to post this: http://www.iknowkungfoo.com/blog/index.cfm/2008/7/9/Check-All-Checkboxes-with-JQuery HTH, Adrian On Jul 9, 2:58 pm, sstewart81 <[EMAIL PROTECTED]> wrote: > I'm on my first week of learning jquery and I'm totally hooked.

[jQuery] Re: Yahoo Mail-like "Select All" check box (???)

2008-07-09 Thread MorningZ
This should clear out the "Select All" whenever one of the checkboxes is clicked/changed $(':checkbox').change(function() { document.getElementById('selectAll').checked = false; });