How open link in new window in Opera12

119 Views Asked by At

How to open link in new window in Opera 12 (Mobile Classic) with default option "Ignore unrequest popup".

This methods don't work:

//1
window.open('http://mylink', '_blank') 

//2
<a href="javascript:window.open('http://mylink');"> Open </a>

//3
<a href="http://mylink" target="_blank">Click</a>

Method in this link Open new tab without popup blocker after ajax call on user click is not very nice (I don't want to send one more ajax request)

0

There are 0 best solutions below