Why Is Window.open() Silently Ignored Iff Called From Within A Loop And Via Settimeout()?
--- EDIT. I don't get it; yesterday it seemed to be ignored; now it seems to be working. Even within loop and called via setTimeout(). Currently I seem to be having difficulties re
Solution 1:
In essence, trying to fire window.open
from withinsetTimeout()
leaves the browser to "think" it's a popup which deserves (silent) blocking. -- If, in contrast, window.open
is fired on it's own, the browser treats seems to treat it like a "user click", that is, not as spam to be blocked.
Post a Comment for "Why Is Window.open() Silently Ignored Iff Called From Within A Loop And Via Settimeout()?"