Window.open Within Settimeout Doesn't Perform The Action
Why does this call to setTimeout show the alert box but does not do the call to window.open? If I remove the alert, it doesn't do the window.open either. // Pause first then op
Solution 1:
Most likely, because your browser considers it to be a non-user-triggered popup … so it blocks it.
Post a Comment for "Window.open Within Settimeout Doesn't Perform The Action"