Posts by Jacques • 1 point
1 post
-
0
votes1
answer1184
viewsA: Javascript to check if popup blocker is active
If you use Javascript to open the pop-up, you can use something like this: var newWin = window.open(url); if(!newWin || newWin.closed || typeof newWin.closed=='undefined') { //popup bloqueado } This…