So what I want is to do this:
if (top != self) {
top.location = self.location;
}
on self.location; change event. (it is possible to use Jquery if really needed but I would love not to) Is it possible and how to do such thing?
main Idea is to keep all popup windows on top. And here we try to modify window code so that it would get onto top when user clicked on main pageto open new one. So Ifigured we shall subscribe and listen to self.location change event. I wonder how to do it?