Forum Discussion
- JustinLapierQrew Trainee
Chris,
1. There is no native functionality I am aware of for this.
2. Modern browsers actually control this mostly, this cannot be done via html with target="_blank", which only opens a new tab/window. I do know custom javascript could be written and injected to open a brand new browser session/window.
------------------------------
Justin Lapier
Synctivate Inc.
Synctivate Website
------------------------------- ChrisSwirtz2Qrew CadetThanks Justin, that is kind of what I figured. Do you happen to know what that Java script might looking like to make this work? I have not yet learned that craft.
------------------------------
Chris Swirtz
------------------------------- RyanStanford1Qrew CaptainQuick GoogleFoo here... if you add features/parameters to a window.open() JavaScript call, it forces it to open as a new window:
var strWindowFeatures = "height=0,width=0,scrollbars=yes,status=yes";
var URL = "https://www.google.com";
var win = window.open(URL, "_blank", strWindowFeatures);
You can find more information regarding WindowFeatures here: https://developer.mozilla.org/en-US/docs/Web/API/Window/open#Window_features
------------------------------
Ryan Stanford
------------------------------