Adsense

Javascript checkbox select all

<input name="dischk[]" type="checkbox">

<input name="disall" onclick="checkedAll(document.myform['dischk[]']);" type="checkbox" >

function checkedAll(field) {
if(document.myform.disall.checked)
{
for (i = 0; i < field.length; i++)
field[i].checked = true;
}
else
{
for (i = 0; i < field.length; i++)
field[i].checked = false;
}
}

No comments:

Post a Comment

comment here

newest questions on wordpress