Iframe not working.

Reply

Join Date: Aug 2005
Posts: 75
Reputation: Sailor_Jerry is an unknown quantity at this point 
Solved Threads: 2
Sailor_Jerry's Avatar
Sailor_Jerry Sailor_Jerry is offline Offline
Junior Poster in Training

Iframe not working.

 
0
  #1
Aug 8th, 2006
I have two html files.

FirefoxBug.html
HTML and CSS Syntax (Toggle Plain Text)
  1. <html>
  2. <body>
  3. <div style=background-color:red;>
  4. <iframe src="/iframe.html"></iframe>
  5. </div>
  6. </body>
  7. </html>
And iframe.html
HTML and CSS Syntax (Toggle Plain Text)
  1. <html>
  2. <body style=background-color:blue;>
  3. <div>
  4. <p>This backgroud should change</p>
  5. </div>
  6. </body>
  7. </html>

I have these two files in the same folder on my desktop, and I am not sure why the iframe will not load.

Is a DTD type required for iframes to work?

Thanks, sj
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 75
Reputation: Sailor_Jerry is an unknown quantity at this point 
Solved Threads: 2
Sailor_Jerry's Avatar
Sailor_Jerry Sailor_Jerry is offline Offline
Junior Poster in Training

Re: Iframe not working.

 
0
  #2
Aug 8th, 2006
Got it working.
HTML and CSS Syntax (Toggle Plain Text)
  1. <?xml version="1.0"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
  6. <style>
  7. div{background-color:red; padding:5em;}
  8. </style>
  9. </head>
  10.  
  11. <body>
  12. <div>
  13. <iframe src="iframe.html" ></iframe>
  14. </div>
  15. </body>
  16. </html>
and iframe.html
HTML and CSS Syntax (Toggle Plain Text)
  1. <?xml version="1.0"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html;
  5. charset=ISO-8859-1"/>
  6. </head>
  7. <body>
  8. <div>test iframe</div>
  9. </body>
  10. </html>
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the HTML and CSS Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC