I went through other similar problems to solve this problem, but for some reason, in this case, all solutions do not work.
So here is my question with an example snippet:
I have an html file that looks like this:
<div id="portalRight"> <a target="_blank" href="http://ictforu.com"> <ul id="subtabnav"> <li class="datasetTab"> <a href="#">dataset</a> </li> <li class="obsGraphTab" data-bind="css: { disabled: !aekos.subTabViewModel.graphTabsEnabled() }"> <a href="#">Observation Graph</a> </li> ..... </ul> <div id="dataset"> <iframe id="dataset-frame" class="graphiframe" seamless sandbox="allow-same-origin allow-scripts"></iframe> </div> <div id="testViewer"> <iframe id="test-viewer-frame" class="graphiframe" seamless sandbox="allow-same-origin allow-scripts"></iframe> </div> </div>
As you can see, my iframe is not a popup, but appears under the Div element: the contents of the iframe are populated using the servlet when the link is clicked.
My Iframe has base tags (base target = "_ parent") under the iframe heading.
I used a tag to indicate behavior, and the link has target = "_ blank", but my links don't work at all. The same link works outside the iframe.
Iframe example:
base target="_parent" /base
body content:
a target="_blank" href="http://ictforu.com" /a
this link does not work, clicks are ignored.
Any help is greatly appreciated.
Sorry there used to be an isseus file with html tags.
Thank you Madhu
source share