Forum Moderators: open

Message Too Old, No Replies

Check boxes

i need explanation

         

RED SCORPiON

10:41 am on Feb 4, 2004 (gmt 0)

10+ Year Member



Hello,
i want an Explane about useing check boxes
like deleteing messages by tick the box & press on delete
also i want something help me to check all boxes by check the first box like in hotmail if any one can help me
please do it
Thanks all

RonPK

7:34 pm on Feb 4, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi,

> deleteing messages by tick the box & press on delete
The deleting is most likely done by a script on the server.

> check all boxes by check the first box
You need a function that loops through the collection of checkboxes and sets them all to checked=true. Something like
for (var i = 0; i < document.forms[0].mychecks.length; i++) {
document.forms[0].mychecks[i].checked = true;
}

I hope this puts you on track.