Redirect in javascript
Can anybody help me with this issue,I am not very good in javascript...
How to redirect to another url using javascript?
or at least where can I find more info about this?
# 1 Re: Redirect in javascript
hmm...heard of search engines?
http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=javascript+redirect
"Mehdi Chaouachi" <magikcm@yahoo.fr> wrote:
>
>Can anybody help me with this issue,I am not very good in javascript...
>
>How to redirect to another url using javascript?
>
>or at least where can I find more info about this?
>
>
>
>
>
>
>
>
JS at 2007-11-11 23:17:42 >

# 2 Re: Redirect in javascript
To cause the current browser window to request a different URL, set the
window.location.href property to the URL you want the browser to request. Or
use the window.navigate" method, passing the URL as a parameter. These two
methods are functionally equivalent.
To open the requested page in a new window, use the window.open method, and
pass the URL as a parameter.
"Mehdi Chaouachi" <magikcm@yahoo.fr> wrote in message
news:3df5eed1@tnews.web.dev-archive.com...
>
> Can anybody help me with this issue,I am not very good in javascript...
>
> How to redirect to another url using javascript?
>
> or at least where can I find more info about this?
>
>
>
>
>
>
>
>