Is there any limit of using window.open("URL"); in JavaScript?
when I tried to open three windows using window.open("URL") after opening the second window the third window didn't open separately but it just refreshed the contents of first window and showed the contents of the third window in there.
Using "_blank" as the target window should open a new window every time (just like with <a href="url" target="_blank">link</a>). For example:
window.open("URL", "_blank");
But opening multiple windows can be subject to various pop-up blocking features and plugins.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With