page linking trouble

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • shane turner

    page linking trouble

    How can I use Javascript to look at variables passed from another page
    using the GET method( a website address) and load that website?
  • Michael Winter

    #2
    Re: page linking trouble

    On 5 Mar 2004 07:56:49 -0800, shane turner <shaneturner12@ fsmail.net>
    wrote:
    [color=blue]
    > How can I use Javascript to look at variables passed from another page
    > using the GET method( a website address) and load that website?[/color]

    window.location .search will return that portion of the URL. The question
    mark (?) will be included at the beginning of the string.

    Assigning a string that contains a URL to window.location will navigate to
    that address.

    Mike

    --
    Michael Winter
    M.Winter@blueyo nder.co.invalid (replace ".invalid" with ".uk" to reply)

    Comment

    Working...