| View previous topic :: View next topic |
| Author |
Message |
joshcxa 100+ Club

Joined: 18 Aug 2004 Posts: 156 Location: Australia
|
Posted: Tue Jul 25, 2006 2:20 am Post subject: automatic pop-up when click on a radio button |
|
|
As the title suggests
I have 2 options for a user to choose from. If the click the radio button, "yes," I want a pop up window to appear
How do I go about that? |
|
| Back to top |
|
 |
|
|
Scriptbanger
Joined: 23 Aug 2006 Posts: 5 Location: Boise, Idaho
|
Posted: Wed Aug 23, 2006 2:22 am Post subject: Re: automatic pop-up when click on a radio button |
|
|
| Code: |
<form>
<input type="Radio" value="no">No<br>
<input type="Radio" value="yes" onclick="window.open();">Yes
</form>
|
|
|
| Back to top |
|
 |
|