Results 1 to 2 of 2

Thread: All links in page open in the special window size

  1. #1
    Join Date
    Aug 2006
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation All links in page open in the special window size

    Hello
    I have a page whit many links ( for example a Dictionary ) ,I want all links in this page open in the special window size whitout scroll ,statusbar,toolbar,.....
    I have script for one link but I want a one code for all links or the script which I can insert in head of main page for all links .
    pls help me ....

  2. #2
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    I think... this is what you're looking for:

    Code:
    window.onload=function() {
    for (i=0;i<=document.links.length-1;i++) {
    document.links[i].target="_blank"
    }
    }
    - Mike

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
  •