Page 1 of 1

Html popup window open another url

Posted: Tue Mar 30, 2021 7:13 am
by amrithpq
Hi,

We are building a pano2vr experience . We are using html as a popup and then fetching a local html page to display content.
However there is an issue. We are unable to open a link inside the html popup even as another tab on the browser.

Code: Select all

inside html popup :
	<div id="box3" class="box">
		<a id="link1" href="https://www.w3schools.com">
			<img border="0" alt="amazon-link" src="assets/img/amazon.png"  rel="noopener noreferrer" target="_blank" width="150px" height="100px">
			</a>
		<a id="link2" href="https://www.w3schools.com">
			<img border="0" alt="amazon-link" src="assets/img/amazon.png"  rel="noopener noreferrer" target="_blank" width="150px" height="100px">
			</a>
		<a id="link3" href="https://www.w3schools.com">
			<img border="0" alt="amazon-link" src="assets/img/amazon.png" rel="noopener noreferrer" target="_blank"  width="150px" height="100px">
			</a>
	</div>