A
amessimon
Hi
I have a issue where i need to open two popup windows at once.
I'm finding this works fine in firefox, IE, and most other browsers, but im
getting caught by popup blockers.
Paraphrased my code is basically .....
this.....
<a href="javascript:clickit();">click here</a>
calls this....
function clickit() {
newwindow2 = window.open("page.html");
newwindow1 = window.open("page2.html");
}
newwindow1 gets blocked
It seems to get blocked by the Yahoo popup blocker, probably others as well.
Does anybody know a way round this?
Thanks in advance
amesimon
I have a issue where i need to open two popup windows at once.
I'm finding this works fine in firefox, IE, and most other browsers, but im
getting caught by popup blockers.
Paraphrased my code is basically .....
this.....
<a href="javascript:clickit();">click here</a>
calls this....
function clickit() {
newwindow2 = window.open("page.html");
newwindow1 = window.open("page2.html");
}
newwindow1 gets blocked
It seems to get blocked by the Yahoo popup blocker, probably others as well.
Does anybody know a way round this?
Thanks in advance
amesimon