[Proto-Scripty] determine if any of checkbox[] is checked

2013-03-31 Thread Phil Petree
Happy Easter! I have an array of checkboxes on a form (about 15 of them) arranged in rows like this: trtdinput type='checkbox' name='kitcat[]' .../tdtdname/tdtddescription/td/tr What I have been trying to use is this: $(input:checkbox[name=kitcat]:checked).each(function() { // if one is

Re: [Proto-Scripty] determine if any of checkbox[] is checked

2013-03-31 Thread Jason Westbrook
Try adding a separate class to all of your checkboxes that are in the group and then do this if( $$('.groupchecks:checked').length == 0 ) { //no checked checkboxes { Jason Westbrook | T: 313-799-3770 | jwestbr...@gmail.com On Sun, Mar 31, 2013 at 8:30 AM, Phil Petree phil.pet...@gmail.com

Re: [Proto-Scripty] determine if any of checkbox[] is checked

2013-03-31 Thread mike
try $$(...) because $() equal document.getElementById -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [Proto-Scripty] determine if any of checkbox[] is checked

2013-03-31 Thread Phil Petree
Hey Jason... I guess the rest of the group are all slugs! How dare they take Easer off! LOL I had kinda come to the same conclusion... what I implemented was: if($$('input:checked').length 0) return true; This kind of works because the ONLY input on this page are checkboxes (think