Results 1 to 2 of 2

Thread: need help with external linking

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

    Default need help with external linking

    UGH! Help! i have an iframe on index.asp (i know i know iframes! but i have to use it) calling up file.asp within file.asp i have a flickr script calling my photo stream using this

    <div id="flickrBadgeImage1Div" style="width: 257px; margin-left:auto; margin-right:auto">
    <script type="text/javascript" src=
    "http://www.flickr.com/badge_code.gne?nsid=36699360%40N05&count=12&display=latest&name=0&size=square&raw=1" >
    </script>
    </div>

    however when i click a photo it loads in the iframe i want it loaded in a new window. any ideas??!!

    i tried this, to no avail
    <script type='text/javascript'>
    var flickrBadgeImage1Div
    = document.getElementById('flickrimg1');
    var a = flickrBadgeImage1Div.firstChild;
    a.setAttribute('target', '_blank');
    </script>

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Here is what I would try - whatever page has this code on it:

    Code:
    <div id="flickrBadgeImage1Div" style="width: 257px; margin-left:auto; margin-right:auto">
    <script type="text/javascript" src=
    "http://www.flickr.com/badge_code.gne?nsid=36699360%40N05&count=12&display=latest&name=0&size=square&raw=1" >
    </script>
    </div>
    In the head of that page, put this tag:

    Code:
    <base target="_blank">
    Now this should make all links on that page open in new windows. If you have other links on that page that you want to open in the same window, use target _self, ex:

    Code:
    <a href="whatever.htm" target="_self">Whatever</a>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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
  •