How to open a iframe link within the same iframe?

by edmond_brakus , in category: HTML & CSS , 7 months ago

How to open a iframe link within the same iframe?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by ryan.murray , 7 months ago

@edmond_brakus 

To open a link within the same iframe, you can use the target attribute in the anchor tag. Here's an example:

1
2
3
<iframe name="myiframe" src="https://www.example.com"></iframe>

<a href="https://www.example.com/page2" target="myiframe">Open link in iframe</a>


In this example, the iframe has a name attribute set to "myiframe". When you click on the link, it will open the page https://www.example.com/page2 within the same iframe.

Related Threads:

How to open google map link in iframe?
How to open a link in a pop up iframe window?
How to force iframe open all links stay in the iframe?
How to open a page in iframe?
How to open an iframe from clicking an image?
How to open a dialog outside the iframe?