Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: urgent Help!

  1. #11
    Join Date
    Jun 2005
    Posts
    2,688
    Tokens
    0

    Latest Awards:

    Default

    Via link:
    Code:
    <html>
    <head>
    <script type="text/javascript">
    function load_into_content(url) {
    window.open(url,'content');
    }
    </script>
    </head>
    <body>
    <a href="javascript:load_into_content('http://google.co.uk');">link</a>
    </body>
    </html>
    Via page load:

    Code:
    <html>
    <head>
    <script type="text/javascript">
    function open_content(){
    window.open('http://google.co.uk','content');
    }
    </script>
    </head>
    <body onload="javascript:open_content();">
    </body>
    </head>

  2. #12
    Join Date
    Dec 2006
    Location
    Swindon
    Posts
    3,299
    Tokens
    215
    Habbo
    dunko

    Latest Awards:

    Default

    Quote Originally Posted by Baving View Post
    Via link:
    Code:
    <html>
    <head>
    <script type="text/javascript">
    function load_into_content(url) {
    window.open(url,'content');
    }
    </script>
    </head>
    <body>
    <a href="javascript:load_into_content('http://google.co.uk');">link</a>
    </body>
    </html>
    Via page load:

    Code:
    <html>
    <head>
    <script type="text/javascript">
    function open_content(){
    window.open('http://google.co.uk','content');
    }
    </script>
    </head>
    <body onload="javascript:open_content();">
    </body>
    </head>
    Or onload:

    Code:
    <html>
    <head>
    <script type="text/javascript">
    function open_content(){
    window.open('http://google.co.uk','content');
    }
    window.onload = open_content();
    </script>
    </head>
    <body>
    </body>
    </head>

  3. #13
    Join Date
    May 2007
    Location
    Brisbane, Australia
    Posts
    796
    Tokens
    0

    Default

    BLOB!!! I LOVE U !!!!! (not gay way) I'VE BEEN LOOKING FOR THIS FOR AGES!!!!!

    Register on my system and ill give u mod and some rep on here
    Last edited by chrisgocrazyH; 10-05-2008 at 10:51 AM.
    Thanks,
    Chris
    Free Image Uploading

    __________________


    [/url]

    [/FONT]

Page 2 of 2 FirstFirst 12

Posting Permissions

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