Thread: 1 link, 2 targets
Results 1 to 3 of 3
Related
-
targets Forum: HTML Forum
Replies: 1
-
08-19-2008, 11:52 PM #1
1 link, 2 targets
Is it possible to have a link in my left frame that loads separate pages in both the left and right frames?
For example, the left frame lists various languages (English, French, Klingon, etc.) and the right frame contains my biography. If I click 'French' in the left frame, the menu changes to French and so does my biography.
-
08-20-2008, 01:28 AM #2
Re: 1 link, 2 targets
I found that the following works, but requires 2 clicks. I need it in 1 click...
<a class="mlink" href="biography_in_klingon.html" target="mainframe"><a class="mlink" href="menu_in_klingon.html" target="menuframe">Klingon</a></a>
-
08-20-2008, 11:55 AM #3
Re: 1 link, 2 targets
This would be very simple to do using a server-side scripting language such as PHP. You should also be able to use JavaScript for it. Give the following a try:
HTML Code:<a class="mlink" href="biography_in_klingon.html" target="mainframe" onclick="window.location.replace('menu_in_klingon.html')">Klingon</a>
Cloudjiffy- PaaS for Developers
10-05-2020, 12:30 AM in Web Hosting Forum