In html5, is there a function like:
document.getAllPopups()
which returns all popup windows that the current window has opened. For example if I did
var P = window.open("blah.com");
then P == document.getAllPopups()[0]
should be true
.
Is there a way to do this?
Thanks