Forum Moderators: open
I would like the second radio button to be pre-selected when the page loads is this possible .. I tried "checked" but that didnt work!
<form style="margin:0px; padding:0px; " method="get" action="">
Choose Your Subscription:
<input type="radio" name="1" value="soLogin.php" selected="selected" onclick="this.form.action=this.value;" />
<input type="radio" name="1" value="newUser.php" selected="selected" onclick="this.form.action=this.value;" />
<input class="submit" type="submit" value="CONTINUE" />
</form>