Mature Lamb 0 Report post Posted December 30, 2005 Hey everyone, I need help with frames. Say I click a button/link, I want it to appear in a certain box of the template. My friend just made a template from a tutorial, and wants me to make a site for him. With some knowledge of HTML, I ended up doing mostly everything, except for the framing. Because I'm going to use a shoutcast radio, I don't want the page to refresh everytime they visit a new link, otherwise the radio will restart for them. Can someone please give me a tag so if I click a button/link, it will appear in a certain area? Thanks. Share this post Link to post Share on other sites
Saint_Michael 3 Report post Posted December 30, 2005 even though im one to advocate against the use of frames this is what you need to add in your url<a href="yoururlhere.html" TARGET="_parent" > Share this post Link to post Share on other sites
Mature Lamb 0 Report post Posted December 31, 2005 Can someone add me on MSN and give me a thorough explanation? I'll be on for another probably 8-9 hours from this post. My MSN addy is maturelamb@gmail.com. Share this post Link to post Share on other sites
fffanatics 0 Report post Posted December 31, 2005 My advice is not to use frames but instead use tables since they pretty much do the same thing except tables are easier to work with and are supported better by browsers Share this post Link to post Share on other sites
Tyssen 0 Report post Posted December 31, 2005 My advice is not to use frames but instead use tables since they pretty much do the same thing except tables are easier to work with and are supported better by browsersYou can't replicate framelike behaviour using tables. The closest you can get (without using frames) is using includes which still won't prevent the page being refreshed when a new link is clicked. Share this post Link to post Share on other sites
Inspiron 0 Report post Posted December 31, 2005 I believe these might help you...https://enaming.com/exclusive/domain/manda.com/http://www.yourhtmlsource.com/frames/inlineframes.html Share this post Link to post Share on other sites
kdr_98 0 Report post Posted January 12, 2006 It depends on what you are using for generating the html. If you are using frontpage you can slect the target while you are creating the link. If you make your html in a text editor linke notepad. You have to watch in index.html what's the name of your window. In the link you can then use that name in the parameter target. Ex. <HTML> <FRAMESET ROWS="120,*"> <FRAME SRC="navi.html" NAME="navigationframe"> <FRAME SRC="start.html" NAME="mainframe"> </FRAMESET> </HTML> The source of the link : <A HREF="vb-b.html" TARGET="navigationframe">Example b</A> Share this post Link to post Share on other sites