how to change url for my website?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nirmalsingh
    New Member
    • Sep 2006
    • 218

    how to change url for my website?

    i am having a website like www.sample.com ,when this page is opening i want to change this url as www.google.com.
    so i used window.location .href="www.goog le.com"; on onload event of body.
    but....
    the url is displaying as www.sample.com/www.google.com,
    how should i solve this?
    plz help me.
    regards
    nirmal
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    It assumes a relative path unless told otherwise. Meaning you would need the http:// in front of the address. But you do realize this redirects the browser? The only thing you can do without redirecting the browser is to append or change a # tag.

    Comment

    Working...