HTML
<iframe width="325" height="450"
style="background-color:#18836f"
src="./embedded_iframe_target_parent.html">
</iframe>
// External file (embedded_iframe_target_parent.html)
<iframe width="425" height="350"
srcdoc="
<a href=./origin_species_sample.html target=_parent>Origin Species</a>"
style="background-color:lightblue; width:80%; height: 50%">
Origin Species
</iframe>
Browser
Notes
target=_parent
in anchor tag
HTML
<iframe width="325" height="450"
style="background-color:#18836f"
src="./embedded_iframe_target_self.html">
</iframe>
// External file (embedded_iframe_target_self.html)
<iframe width="425" height="350" srcdoc="
<a href=./origin_species_sample.html target=_self>
Origin Species</a>"
style="background-color:lightblue; width:80%; height: 50%">Origin Species
</iframe>
Browser
Notes
target=_self
in anchor tag
HTML
<iframe width="325" height="450"
style="background-color:#18836f; height:50%"
src="./embedded_iframe_target_neighbour.html">
</iframe> <br>
<iframe width="325" height="450"
name="neighbourIframe"
srcdoc="<div style=color:white;font-size:1.5em>I am the neighbour</div>"
style="background-color:#18836f;">
</iframe>
// External file (embedded_iframe_target_neighbour.html)
<iframe width="425" height="120"
srcdoc="
<a href=./origin_species_sample.html target=neighbourIframe>Origin Species</a><br>
<a href=./alice_in_wonderland_sample.html target=neighbourIframe>
Alice in Wonderland</a>"
style="background-color:lightblue; width:80%;">Origin
Species
</iframe>
Browser
Notes
-
target=neighbourIframe
in anchor tag
-
name="neighbourIframe"
in targetted
iframe