window.opener Questions

4

Solved

So I know that I can apply rel="noopener in an a tag when using target="_blank". But I'm trying to pass it as an argument to window.open(), ie: window.open('http://cats.com', '_blank', 'rel=noo...
Bibliophile asked 11/9, 2017 at 3:54

2

Solved

I have been researching this problem and while there's lots of posts on various forums about similar problems, none of the problems or solutions exactly match mine. I have an application that has ...
Cleo asked 11/10, 2011 at 0:9

1

There's a target=_blank link. A script in the linked page uses window.opener, and this has worked for years, but now it's broken on iOS because window.opener is null. What can I do? There are plen...
Molnar asked 16/7, 2019 at 15:27

4

Solved

I was using window.open('') with '_blank' as second parameter to open my link in new tab For eg. window.open('http://google.com', '_blank') But, recently I added the third parameter 'noopener' so ...
Pulsatile asked 14/3, 2018 at 11:26

5

Solved

I am opening a modal popup window. Then I access a parent window textbox and other attributes using window.opener. It is working fine in firefox but not in IE8. It gives error 'window.opener is nul...
Hanser asked 3/2, 2011 at 11:50

2

Solved

I'm opening a popup from my main page with code like this: <a href="http://external.domain.tld/" onclick="window.open(this.href, '_blank', 'width=512,height=512,left=200,top=100');return fal...
Bick asked 8/8, 2013 at 8:28

2

Solved

I am trying to call a javascript function defined in a parent from a child window. I have two files like this: Parent: <html> <head> <title>Test</title> <script type="t...
Purpurin asked 14/5, 2012 at 21:5

3

Solved

I have a parent window from where I am opening a pop-up window using window.open() and I am monitoring the return of that pop-up window using the window.opener method. I have two queries here: On...

4

I have looked for awhile and cannot find an answer that fits my needs. I have a page that pops a window (window.open), logs the user in (creates a cookie, set session) then redirects to another pag...
Lomeli asked 21/9, 2010 at 16:20

1

Solved

I've researched this extensively (there are many similar questions) but I'm not finding the exact answer I'm looking for. I am creating a single sign-on widget, so the user flow is as follows: U...
Adversity asked 4/4, 2013 at 22:32

3

Solved

My main goal is: Going to my application, open a link there in a new tab, make something in the new tab and send an event to the parent-main tab to refresh. I have learned 2 techniques that does...
Earthaearthborn asked 11/11, 2012 at 18:40

4

I've created a form with a button. If users click the button, browser will generate a popup for user to upload and crop a photo. onclick="window.open('upload.php');" if uploaded window.opener.d...
Rosabella asked 3/4, 2011 at 14:52

4

Solved

I have a two windows, one is opened from another, so, I have an opener property in "child" window. Parent window has some function in global scope, which must be called with a function as a first ...
Enzyme asked 8/5, 2012 at 13:30

2

"window.opener" works fine in both IE and Firefox as long as 'Open in New Tab' is used from the right-click menu; Error console says "window.opener" is null. Is there any other way the opener can b...
Backbite asked 3/6, 2009 at 10:36
1

© 2022 - 2024 — McMap. All rights reserved.