I have check buttons on the document.
<input type="checkbox" id="CustmerRequested"/>
I want to know how many of the boxes in the document are checked.
I tried to do alert(document.all.CustmerRequested.checked.length); but it says undefined.
How can I find out how many boxes are checked?
If you are starting to build a site that needs this kind of browser-side programming reguarly, I would suggest looking at jQuery. See here for tutorials: http://docs.jquery.com/Tutorials