Hi all.
I have some problems with radio buttons. Hope to get some help here. Thanks in advance.
Here's the html:
<?php while($row=mysql_fetch_array($result)) { ?>
<input name="replacement" id="replacement" type="radio"
value="<?php echo $row['date']; echo $row['title']; ?>"
I need to validate if none of the radio buttons is checked using javascript. How can I do that? Any help will be appreciated. =)