Results 1 to 3 of 3

Thread: Pop Up Script

  1. #1
    Join Date
    Nov 2005
    Location
    Australia
    Posts
    1,086
    Tokens
    111

    Latest Awards:

    Default Pop Up Script

    Can sombody please tell me the script for a pop up window?

    So when you click "Click Here For Main Site" it pops up a width="753" height="537" window.

    Anybody?

    Thanks,
    Rob.


  2. #2
    Join Date
    Oct 2005
    Location
    In a Box in Khazakistan
    Posts
    3,037
    Tokens
    0

    Latest Awards:

    Default

    <SCRIPT TYPE="text/javascript">
    <!--
    function popup(mylink, windowname)
    {
    if (! window.focus)return true;
    var href;
    if (typeof(mylink) == 'string')
    href=mylink;
    else
    href=mylink.href;
    window.open(href, windowname, 'width=753,height=537,scrollbars=yes');
    return false;
    }
    //-->
    </SCRIPT>

    Family Guy 3

    Formally : Bielby2000




    RSN: Bielby2007

  3. #3
    Join Date
    Mar 2006
    Location
    Manchester UK
    Posts
    195
    Tokens
    0

    Default

    HTML Code:
    <script language="javascript">
    <!--
     window.open('url.php', 'Name', config='height=753,width=537')
    //-->
    </script>
    Last edited by Encryptions!; 29-04-2006 at 03:53 PM.

Posting Permissions

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