Question

When using window.open(....) is there a way to use the -nomerge option.

I'd like to be able to check for the browser type, and open a new window with a new session. Is there a clean way to do that in javascript.

Was it helpful?

Solution

You cannot have javascript run executables from the operating system, so you can't specify the -nomerge flag like that.

also, it's now -noframemerging http://msdn.microsoft.com/en-us/library/ee330728(v=vs.85).aspx

OTHER TIPS

AFAIK you can't get a new session in a new window in any browser. They will all use any existing session cookies even with a new window.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top