Filter (Advanced Search)
Downloads
0
Views
226
Video

Video is not available... Embedded is previous playlist.

Details

An iframe can be used as the target frame for a link.

The target attribute of the link must refer to the name attribute of the iframe:

Example

<iframe src="/html/computer.htm" name="iframe_a" title="Iframe Example"></iframe>

<p><a href="
https://www.gssskhokhar.com" target="iframe_a">gssskhokhar.com</a></p>


<!DOCTYPE html>
<html>
<body>

<h2>Iframe - Target for a Link</h2>

<iframe src="/html/computer.htm" name="iframe_a" height="300px" width="100%" title="Iframe Example"></iframe>

<p><a href="https://www.gssskhokhar.com/index.html" target="iframe_a">gssskhokhar.com</a></p>

<p>When the target attribute of a link matches the name of an iframe, the link will open in the iframe.</p>

</body>
</html>



Ad