Setting default target frame - HTML Views : 355
Tagged in : HTML
Send mail vote down 0 vote down 0
Setting default target frame

One of the "new" features in HTML 3.0 is the ability to utilize frames. Frame have many useful functions. One way to better control which frame a link is opened in, is the use of the TARGET command. For example, to open a document named index.html in a frame named Main, you could do something along these lines:

<A HREF="news.html" TARGET="Main">Click for Hosting</A>


If you want to set the default target frame to Main, you can insert the following line into the beginning of your HTML document:

<BASE TARGET="Main">


By - Sanju, On - 2010-01-03




    Login to add Comments .