I need a script to do the following:
When one specific option is selected and submitted from a drop down (form option) menu and submitted I want a pop-up box with a text message and an "OK" button to click, before being taken through in the main window to another page.
I've acheived a similar thing with an image map using the following code:
<AREA SHAPE="poly" COORDS="165,99, 168,118, 182,118, 186,114, 177,103, 177,98" onClick="alert('My text message here.');window.top.location.href('myurl.htm')">
Any suggestions???
When one specific option is selected and submitted from a drop down (form option) menu and submitted I want a pop-up box with a text message and an "OK" button to click, before being taken through in the main window to another page.
I've acheived a similar thing with an image map using the following code:
<AREA SHAPE="poly" COORDS="165,99, 168,118, 182,118, 186,114, 177,103, 177,98" onClick="alert('My text message here.');window.top.location.href('myurl.htm')">
Any suggestions???
Comment