Web Hosting Talk







View Full Version : Iframe


amccoy
01-14-2010, 03:19 PM
Hello All

Having some trouble with an iframe that just won't load content.

Here is the Iframe content:

<iframe id="ifrm" name="ifrm" scr="privacypolicyinfo.html" width="580px" height="280px" scrolling="auto"><A HREF="privacy_policy_info.html">A
link to the page</A>
</iframe>

and here is the code of privacypolicyinfo.html

<html>
<head>
<title>Untitled</title>
<style type="text/css">
body {
font: 13px/1.3 verdana, arial, helvetica, sans-serif;
margin:6px; padding:0
}
</style>
</head>
<body>
This Privacy Policy explains how .... collects, uses, and discloses individually identifiable information ("Personal Information") that we obtain about candidates whether through.... website, over the telephone or in person. Please read this information carefully. By using this website, and/or submitting any Personal Information, you expressly consent to the terms in this Privacy Policy.
</body
</html>

Any sugestions as to why this wont work?

Thanks in advance.

Annuit Cœptis
01-14-2010, 03:46 PM
change scr to src

amccoy
01-14-2010, 03:56 PM
Thanks I can't believe a silly typo caused me 30 mins of annoyance.

Thanks man

adminim
01-21-2010, 03:32 AM
Iframe tag define an inline frame that contain other document...
<iframe src="location.asp">
</iframe>