Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Weird problem with IE5.0

Status
Not open for further replies.

safra

Technical User
Jan 24, 2001
319
NL
Hi,

I'm not sure this is the right spot to ask the following.

I have web site that uses frames. In order to get straight to a page within the frameset I use a link like this:


The main page will recognise that it should open cars/index.htm within the frame set.

The problem I have with IE5.0 is that it will open the page without scrollbars!

Any ideas what causing this and how to avoid it?

regards,

Ron
 
Try this:
<a href=&quot; target=&quot;home&quot;>Cars</a>

The target tag should solve the problem.

In your frame set &quot;this is a 3 frame set&quot; take notice of name=home:
<frameset rows=&quot;100,*&quot; border=0>
<frame src=&quot;window2.html&quot; noresize scrolling=no marginwidth=120 border=0>
<frameset cols=&quot;110,*&quot; border=0>
<frame src=&quot;window1.html&quot; noresize scrolling=no FRAMEBORDER=0>
<frame src=&quot;home.html&quot; name=home>
</frameset>
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>

Hope this helps,
Bob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top