Log in

View Full Version : Need help...



Mosqwik
09-25-2007, 11:24 PM
any buddy can help me out?
im huving a html asgs..
i huv 3 frames in the each html..its a toy website..
M i possible to linked to file in a single button?

<frameset rows="250,70,*" border="0">
<frame src="Galery\title.swf" name="home">
<frame src="menubar.html" name="menu">
<frame src="bottom" name="bottom">
</frameset>

the menu frame is should be stay n no changes but the home n bottom part will be changing when i click a single button..
can any1 help me out?
i need to huv the code for the button tat can link 2 files in a button or i can update the whole page without opening a new window
_________________
[MODERATOR EDIT: SPAM SIGNATURE REMOVED]

insanemonkey
09-26-2007, 12:08 AM
ok I kinda dont know what you mean but check this out might solve your problems...

http://www.xudas.com/test/iframe.html

I have an example of an iframe for you..

The code for that page I am listing below.

Do you want to link to three things with one button like
link to each frame with one button so it goes to different pages for all three,
if so that would have to be javascript.

the iframe source code....



<center>
<iframe name="MYFRAME" src="http://google.com" width="740" height="400" frameborder="1" ></iframe>
<BR><BR>

<a href="http://www.google.com/search?hl=en&q=Link+1&btnG=Google+Search" target="MYFRAME">Link 1</a>

<a href="http://www.google.com/search?hl=en&q=Link+2&btnG=Google+Search" target="MYFRAME">Link 2</a>

<a href="http://www.google.com/search?hl=en&q=Link+3&btnG=Google+Search" target="MYFRAME">Link 3</a>

<a href="http://www.google.com/search?hl=en&q=Link+4&btnG=Google+Search" target="MYFRAME">Link 4</a>