Skip to content

Instantly share code, notes, and snippets.

@tylerforsythe
tylerforsythe / PopupBlockerHandlerEx.js
Created September 29, 2016 16:35
My Modified Popup Blocker Checker/Handler Code (JS)
// Based on Stackoverflow answer here: http://stackoverflow.com/a/13652769/7656
// My modified handler
MyGlobalScope.popupBlockerChecker = {
check: function(popup_window, urlAttemptingToOpen){
var _scope = this;
if (popup_window) {
if(/chrome/.test(navigator.userAgent.toLowerCase())){
setTimeout(function () {
_scope._is_popup_blocked(_scope, popup_window, urlAttemptingToOpen);
},200);