Results 1 to 2 of 2

Thread: Open e new URL

  1. #1
    Join Date
    Nov 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Open e new URL

    Helly guys..
    Can anybody help me with this request... I want that when a person goes on my site www.mysite.com In a new window must be opend another page www.mysite.com/example.php so just like a popup but i want to be opened this one for example in a lot of web sites i've seen this I go to www.site1.com in a new window is opened www.site2.com.

    Thank you to everybody

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Code:
    <script type="text/javascript">
    window.onload = function(){
    window.open('http://www.google.com','Google'); //website, then title
    };
    </script>
    That should do it, just change the highlighted to the website name, and then the next field is the title (I think )
    Jeremy | jfein.net

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •