简体   繁体   中英

Detect blocked pop-up in Chrome

Ok so I am using Chromium for Ubuntu 9.10 and cannot get this working using the normal means of detecting a pop-up blocker which are...

var popup = window.open(...);
var blocked;
if(!popup) {
    blocked = true;
} else {
    blocked = false;
}

Also, the accepted solution in this SO post, Detect blocked popup in Chrome , does not work.

popup.innerHeight no longer works. Use outerHeight, if greater than zero then it was not blocked.

If it's a page on the same domain, check popup.innerHeight . If it's 0, the popup was most likely blocked.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM