C
|
cgphp 12/10/2012 |
You can count in the "Javascript onload" event how many checkbox were selected. |
W
|
wildwally author 12/10/2012 |
Could you point to an example of this for me to use and modify accordingly? In particular how to read the value of the checkbox since it doesn't have specific ID. |
C
|
cgphp 12/10/2012 |
var howMany = $("input[type='checkbox'][id^='check1_'] :checked").length; |
W
|
wildwally author 12/10/2012 |
var howMany = $("input[type='checkbox'][id^='check1_'] :checked").length;
|
W
|
wildwally author 12/13/2012 |
Ok so I've almost got this working as I would like. |