on 10/3/00 9:44 AM, W Luke at [EMAIL PROTECTED] wrote:

> I'd like to popup a Confirmatory "Your settings have been changed" dialog
> box, and onclicking "ok", forward users to another page.  Dreamweaver
> produced the following code for the Message, but can anyone advise the best
> way (be it in CF or not) of directing uses to another page after the click?
> 
> <script language="JavaScript">
> <!--
> function MM_popupMsg(msg) { //v1.0
> alert(msg);
> }
> //-->
> </script>
> </head>

Try:

function MM_popupMsg(msg) { //v1.0
alert(msg);
window.location = "yourPage.htm";
 }


------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to