Setting default target frame - HTML Views : 402
Tagged in : HTML
0 0
Send mail
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 .