News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

Redirecting

Started by Tomer, July 02, 2005, 04:03:16 AM

Previous topic - Next topic

Tomer

I need to redirect a page after a prompt [like in SMF when you recieve a message], how can this be done?

- Thanks

[Unknown]

Just change window.location.href.

-[Unknown]

Tomer

I'm using this:


function message()
{
      var Your_Name = confirm("You have recieved a message, do you wish to view it?")

   if (Yes_or_No == 1) { // user clicked ok.
window.location.href = '/?page=test'
   }
}

</head>
<body onload="message();">


Whats wrong with it?

- Thanks

[Unknown]

You're using different variables.  I would just use:

if (confirm("You have recieved a message, do you wish to view it?"))
   window.location.href = '/?page=test';

-[Unknown]

Tomer


Advertisement: