In javascript, how can I uniquely identify one browser window from another which are under the same cookiedbased sessionId
you could set your own window name, the exact syntax escapes me right now, but you can use the current time and session id to create a unique id on window load, then use that id This would be done the same way you set a name in the javascript window.open() function, (but you can … Read more