• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML help - multiple links on one anchor?

Why would you want to redirect to 2 places with a single link!? I don't believe the HTML specs allow this..Regards
 
If I understand correctly, and this is the only way HTML specs will allow, you want several links to take you to the same point (anchor). All you have to do is reuse the anchor name for each link you want to use it with.

 
hrm.. what I was after was when you click one link, one page opens in one frame (a different nav bar on the left) and at the same time another page loads in the right(content) frame. I got around it by linking the one link to another frameset page that loads new pages in the left and right frames. but I was wondering if there was another way, that way I dont have to have 20 seperate frame set pages.

the site I'm working on is for the place I work for : http://ngtsi.ntworks.org
 
Well if you have 2 frames you will have 3 pages total...that is just how the HTML works...and I know that you cannot have two pages open with HTML on the same link...im not a JS expert but just adding the one extra page for the frameset is more than likely the EASIEST way...and if you are just changing the content on the left then you can just link to the right frame.

Actually I just went and looked and it looks like you have it set up right...JUST as an opinion...frames in general blow! I would consider setting up a series of tables (you will also notice that the pages loads faster like that) and setting up a template and changing the content of the page in the middle...once again...IMHO! Makes all your stuff MUCH easier for you and you can trim your code down!
 
Back
Top