Select All CheckBox
Author: Junaidi Musa
JUNAIDIX™ Laboratories

Copy the Script and paste it between <head> </head> tag.

 

<script language="JavaScript">
// function check all check box
// author: junaidi musa
// JUNAIDIX™ Laboratories
// begin here---

function CheckAll(type,n)
{
for(i = 1; i <= n; i++)
{
document.ps_form[type+"_"+i].checked=1;
}
}

function UnCheckAll(type,n)
{
for(i = 1; i <= n; i++)
{
document.ps_form[type+"_"+i].checked=0;
}
}

// function end here ----
< /script>

 

Sample:

Selection
 
select 1
select 2
select 3
select 4
select 5
select 6
select 7

 

Copyright © 2004 JUNAIDIX™ Laboratories

Hosted by www.Geocities.ws

1