Thanks Joe
I appreciate the help, but i cant understand why my code isn't working, ive been looking at it for ages, my html doesnt even seem to register using the function i made! Its not going great!
function Do_Validate(page1)
{
var proceed = "false";
for (var x = 1; x <= 16; x++)
{
for (var counter = 0; counter <= 2; counter++)
{
var q = "q";
var question = q.concat(x);
if (page1.question[counter].checked)
{
proceed = "true";
}
else
{
proceed = "false";
}
}
}
if (proceed != "true")
{
//var msg+="You have not answered question \n";
//echo(msg);
return false;
}
else
{
page1.submit();
}
}
Thats the latest javascript and the source code can be found at
http://www.williamcarson.co.uk/Evalu...orm/form1.html
If anyone can cast an eye and see why its not working i would be so so grateful. Cheers.