I need to make a JavaScript for an application that checks if the popup blocker is active. I have the following code:
$(window).ready(function(){
var Janela = window.open('', '', '');
if(Janela==null){
alert('Não Abriu!!!');
}
});
However, I wanted something that would not open a tab to do this check, because every time you trigger this method, if you have released the popup, it will open a new user tab.