Open a child browser window from a child window

Does anyone know how to open a browser window from a child window?

In my main window, I do window.open (.....). But then from this child window I want to open another child window, but it doesn't work. I mean the problem is that the window opens on the first child.

Any ideas?

Thanks.

+2


a source to share


1 answer


Try using a different name for each window you open:



window.open('url here', 'window one', 'settings')
window.open('url here', 'window two', 'settings')
window.open('url here', 'window three', 'settings')
// and so on

      

+3


a source







All Articles