I am trying to open a popup from another popup using the window.open method, but it just opens a second popup in the previous popup.
The code I'm currently using:
win= window.open(Window,"child","top=250,left=310,Width=300,Height=150,Location=no,Scrollbars=no") win.focus();
Ankit source share