supajason
Member
- Messages
- 288
- Reaction score
- 2
- Points
- 18
hello i need some help.
i have a page like this:
i have about 20 radio groups (each with 2 buttons) that i need to validate to make sure each of the groups has a radio button checked.
thank you for your time.
i have a page like this:
Code:
<html>
<head>
<title>Test</title>
</head>
<body>
<form name="requestform" method="post">
<input type="radio" name="question" value="yes">yes
<input type="radio" name="question" value="no">no
<br>
<input type="radio" name="something" value="yes">yes
<input type="radio" name="something" value="no">no
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
thank you for your time.