Radio Button Alert

Click on one of the radio buttons to see a message

1: 2: 3:

Here's the code for this.

<FORM>
<p>
1:
<INPUT TYPE="radio" NAME="radio" value="YOUR MESSAGE GOES HERE"
onClick="alert(value)">
2:
<INPUT TYPE="radio" NAME="radio" value="YOUR MESSAGE GOES HERE"
onClick="alert(value)">
3:
<INPUT TYPE="radio" NAME="radio" value="YOUR MESSAGE GOES HERE"
onClick="alert(value)">
</form>


Go Back to Doug's JavaScript Page



Button Alert

Push this button to make a message apear.

Here's the code.
<form><input type="button" value="message" onClick="alert('this is the
message'); return true"></form>




Go Back to Doug's JavaScript Page