admin管理员组文章数量:1344227
I'm trying to open a new window like so:
$('#wrapper').click(function() {
window.setTimeout(function() {
//alert('hi');
window.open("", "ExternalLinks", "resizable=yes, scrollbars=yes, status=yes");
}, 1000);
});
This works in Firefox, but not in Chrome or Safari (so far, I've just tested on a Mac). The alert()
works in all browsers, so there seems to be something preventing the window.open
from executing in Safari/Chrome. Furthermore, if I remove the setTimeout
and just call the window.open
then it does work in all 3 browsers. It's almost like if the window.open
is nested too far away from the click
event, then it doesn't work in Safari/Chrome.
So you know, I have an all-Flash website and I'm trying to get external links to open in a new window, so I'm reading the hash tag in the URL (ex. htp://example/#/facebook/) and if it matches certain items, then I'm calling window.open
to open a specific URL. I don't have access to the Flash source, or I would handle this there.
Any ideas?
I'm trying to open a new window like so:
$('#wrapper').click(function() {
window.setTimeout(function() {
//alert('hi');
window.open("http://example.com", "ExternalLinks", "resizable=yes, scrollbars=yes, status=yes");
}, 1000);
});
This works in Firefox, but not in Chrome or Safari (so far, I've just tested on a Mac). The alert()
works in all browsers, so there seems to be something preventing the window.open
from executing in Safari/Chrome. Furthermore, if I remove the setTimeout
and just call the window.open
then it does work in all 3 browsers. It's almost like if the window.open
is nested too far away from the click
event, then it doesn't work in Safari/Chrome.
So you know, I have an all-Flash website and I'm trying to get external links to open in a new window, so I'm reading the hash tag in the URL (ex. htp://example.com/#/facebook/) and if it matches certain items, then I'm calling window.open
to open a specific URL. I don't have access to the Flash source, or I would handle this there.
Any ideas?
Share Improve this question asked Jan 11, 2011 at 23:29 matthewpavkovmatthewpavkov 2,9284 gold badges23 silver badges37 bronze badges 03 Answers
Reset to default 15Safari/Chrome have built-in pop-up blockers that stop this from working. The only javascript that is allowed to open a new window in Safari/Chrome is javascript directly attached to click handlers (and other direct user input handlers). In past versions people figured out some ways to cheat (like generating some other element -- a form or div -- and simulating user input with javascript), but newer versions are smarter about detecting this. I'd recommend re-configuring things so that you don't use a delayed pop-up -- that is the kind of thing that can generally be jarring to a user after all.
I got around this by checking the return value of window.open() for undefined. If that is true call alert() with a message for the user to to disable their popup blocker.
var myWin = window.open([args]);
if (myWin == undefined)
alert('Please disable your popup blocker');
Another workaround
Just open a popup with ACCEPT and CANCEL options and attach the window.open
action to the ACCEPT button and it will works. It worked for me...
本文标签: javascriptOpen new window after a click event not working in SafarichromeStack Overflow
版权声明:本文标题:javascript - Open new window after a click event not working in Safari, Chrome - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1738388436a2084305.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论