Fighting with this for an hour now.
<div class=“mapframe”>
<iframe <a href="http://www.city-data.com/city/california.html"></a>"
</iframe>
</div>
The iframe opens well enough but no content from the city-data page.
Any suggestions?
Thanks . . . Rick
This works . . .
<div class=“mapframe”>
<iframe src=“http://www.city-data.com/city/california.html”>
You need a Frames Capable browser to view this content.
</iframe>
</div>
Hope this helps someone.
Rick
ralphm
3
Yes, this is basically the setup for an iframe:
<iframe src="http://www.page-to-be-pulled-in.html">
</iframe>
Any time I want to know how an element works, I Google examples of it first, or use the SitePoint Reference, to avoid falling down ditches like this. 