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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem display using iframe

Status
Not open for further replies.

Frustrated50

Technical User
May 15, 2002
3
GB
Hi

Hope this is the right place for this sort of question, no doubt someone will tell me if not.

I am using the following to include a small page created in Excel and saved as htm -

<a href="COLOR="#FFFFFF">Test</a>

It displays, but right at the bottom of a giant page, this statement works fine with "ordinary" html

Any ideas? - Thanks, Ron
 
your iframe has to have id="framename" and name="framename"
then your href has to have target="framename"

eg.
<a href="blah.html" target="content">view file</a>
<iframe id="content" name="content"></iframe>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top