Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 24

Thread: Is this possible? (Using HTML or Java)

  1. #11
    tralalala's Avatar The Almighty
    Join Date
    May 2003
    Posts
    5,437
    I think it's target="_top"..?

  2. Internet, Programming and Graphics   -   #12
    you want it to open in a new window?
    target="_blank">
    see earlier script

  3. Internet, Programming and Graphics   -   #13
    what i like to use in pages is this
    <meta http-equiv="imagetoolbar" content="no">
    it prevents in IE that little popup thingy(save image etc) when you put your cursor over an image

  4. Internet, Programming and Graphics   -   #14
    Retired
    Join Date
    Feb 2003
    Posts
    12,488

    Target Frame refers to the frame name where you want the URL link to be invoked. If not specified, the Flash applet may launch a whole new browser window. If your webpage does not use frames, then using the _self option will ensure that the visitors keep using the browser they are currently surfing with.

    If you are using frames, then you may try some of these as well:

    * _self show in current frame
    * _parent show in parent frame
    * _top show in top-most frame
    * _blank show in new unnamed top-level window

  5. Internet, Programming and Graphics   -   #15
    tralalala's Avatar The Almighty
    Join Date
    May 2003
    Posts
    5,437
    Well, now the problem is that when I click the nav link, it changes the frame, but also refreshes the whole page.
    I need a code that will ONLY change the frame...

    How do I do this?

  6. Internet, Programming and Graphics   -   #16
    Retired
    Join Date
    Feb 2003
    Posts
    12,488
    try: target="_parent"
    Last edited by {I}{K}{E}; 07-29-2005 at 11:44 AM.

  7. Internet, Programming and Graphics   -   #17
    tralalala's Avatar The Almighty
    Join Date
    May 2003
    Posts
    5,437
    Nope. none of those targets do what I want...

    See, the nav links are outside of the frame, and I want the nav links to open INSIDE that frame, and I don't know how to do that...

  8. Internet, Programming and Graphics   -   #18
    tralalala's Avatar The Almighty
    Join Date
    May 2003
    Posts
    5,437
    parent just opens it in the whole page..

  9. Internet, Programming and Graphics   -   #19
    tralalala's Avatar The Almighty
    Join Date
    May 2003
    Posts
    5,437
    Maybe there is a JS code that would do this....?

  10. Internet, Programming and Graphics   -   #20
    does this work?
    example;

    <a href="#" onclick="top.main.window.location='../artists/JD/JDMain.htm';return false">Jørgen Dobloug</a>

    or

    <img name="Image128" src="http://www.christiandam.com/artists/images/LD_tumb_bw.jpg" border="0" height="115" width="138"></a></td>
    </tr>
    <tr>
    <td valign="top"><a href="#" onclick="top.main.window.location='LD/LDMain.htm';return false">dan</a>
    Last edited by 99%; 07-29-2005 at 11:51 AM.

Page 2 of 3 FirstFirst 123 LastLast

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
  •