Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

opening link in other frame??

Status
Not open for further replies.

AkshunMon

Programmer
Oct 27, 2003
4
US
I have a 3 frame webpage. I want to open a link that is in one frame in the frame that is next to it.

but how????

 
<a href=&quot;yourURL&quot; target=&quot;YourFrameName&quot;>Click Me</a>

Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.
 
Is this sort of like linking to s spot in a page? Like when you do the
<a name=&quot;jump&quot;>this spot</a>

???

what I mean is do I have to have a name for it and have the crosshatch in front of it?
 
here is what I did
<a href=pagename.html target=otherpage.html>link name</a>

but it won't work.
 
well all your frames have names which have been defined in your frameset like &quot;DT&quot; said -- you have to target the name of the frame you want your link opened in.

Usually leftfram, topframe, mainframe, bottomframe are the most common type of frame names.

Its kinda similar to anchors which is what you are referring to but in anchors your links are built <a href=&quot;#anchorname&quot;>go to my anchor</a> where in a frame you have a normal href but you assign a target value

Sometimes the Answer You Are LOOKING for can be FOUND BY SEARCHING THE FAQ'S @&%$*#!!!
 
you are forgetting the quotation marks! href=&quot;pagename.html&quot; target=&quot;target&quot;

target is not a page it is a name there is no .html after otherpage.html -- look in your frameset and get the frame names they are not the filenames of the pages.

Sometimes the Answer You Are LOOKING for can be FOUND BY SEARCHING THE FAQ'S @&%$*#!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top