Reputation: 29
I am not a very experienced javascript programmer by any means, but I am trying to prototype something for design purposes and I need some help. Here are some questions I have about window.open() in chrome
Thanks
Upvotes: 3
Views: 9285
Reputation: 3792
I would like to quote other answers from helpful posts that will go more in depth to what you need to know, all the answers here are in javascript:
Open a URL in a new tab also Open URL in New Window with Javascript
open url in new tab or reuse existing one whenever possible also I want to open a new tab instead of a popup window
You cannot open new windows or new tabs that your Javascript does not already know about because its outside its scope.
I hope this helps, please feel free to comment if you need anything further!
Upvotes: 2