I m using Window.open() function to open popup, i m just passing url with querystring name Id,
i have to check wheather popup is open/closed for particular ID that is passed as querystring. If not open or closed then i will open it otherwise no need to open.
ex- first i open popup with below statement, wondow.open('Home.aspx?id=1');
then after 5 second, I want to open two pop up with Id=1 and id=2, at this time i need to check if home.aspx with id=1 is already open then no need to open one more pop up with id=1, just open for ID=2 as no popup is open for id=2
but need to ensure that two popup should not open for same querystring.
Tell me the solution