I need to open the link in the same parent page, instead of open it in a new page.
note : The iframe and parent page are the same domain.
|
feedback
|
|
I found the best solution was to use the base tag. Add the following to the head of the page in the iframe:
This will load all links on the page in the parent window. If you want your links to load in a new window, use:
| |||||||||
feedback
|
|
Use target-attribute:
| |||||
feedback
|
|
As noted, you could use a target attribute, but it was technically deprecated in XHTML. That leaves you with using javascript, usually something like | |||
|
feedback
|
|
Try target="_parent" attribute inside the anchor tag. | |||||||||
feedback
|
|
There's a DOM Object called <Base /> which : "Specify a default URL and a default target for all links on a page:"
by speifing "_blank" you make sure all links inside the iframe will be opened outside. | |||
|
feedback
|