Im trying to get some checkbox with a specific name
document.getElementsByName("test");
Unfortunatley i cant check if it is checked or not here is the code
for(i=0;i<check.length;i++)
{
if(check[i].checked==true)
{
alert(check[i].value);
}
}
Is somewhere a typo?