Html popup window open another url

Q&A about the latest versions
Post Reply
amrithpq
Posts: 13
Joined: Thu Oct 08, 2020 1:50 pm

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>
	
	
Attachments
open_link.PNG
open_link.PNG (1.77 MiB) Viewed 21211 times
Post Reply