So, I have a page containing an iframe. Inside the iframe there are links that open a new page in the same window (self.location.href) (window.open (urlstring, 'false'), etc. Etc ....
Is there a way to make all links inside this window open their contents in a new window / pop up? Overrides its redirection settings and doesn't change the code inside the iframe?
The reason I'm asking about this is because, in my opinion, the iframe page still refers to the parent window as its window, so when a function like "window.self.open" was run, it took all my parent window away ...
Maybe in any case, embed the iframe in a separate window inside the page? Just not sure how to avoid the same link window ...
Thanks!
source share