Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
97 views

window.opener.location.indexOf () function issue

I am trying to close child window if host name are same of parent and child but its <script type="text/javascript"> $(document).ready(function () { if (window.opener) { ...
3
votes
3answers
4k views

window.opener alternatives

I am opening a modal popup window. Then i access 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 null'. ...
2
votes
1answer
48 views

calling a function from child window using window.opener works in IE but not in Firefox

I'm working on a site that has three frames. A top frame, main frame and a bottom frame named topFrame, mainFrame, bottomFrame in the frameset. Nothing unusual. Working in the mainFrame, I have a ...
2
votes
1answer
88 views

Javascript access denied - can't access opener after parent is no longer used in an iframe

This is not related to the domain like many other similar posts with the same error message. Here is my set up: <iframe src='somepage' /> user can open a window popup from within somepage ...
2
votes
1answer
219 views

What's the proper way of using Javascript's window.opener?

I've created a popup window and in it I'd like to use a function I've created in the parent window. I've tried using window.opener.parentFunction() but to know avail. Has anyone else experienced ...
2
votes
3answers
2k views

Refresh the parent window from the child window in javascript

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 page. ...
2
votes
1answer
2k views

Javascript Window.Opener Object Null on .NET WebBrowser Control New Window

Well I have a Pop up in the WebBroswer control of the .NET Framework that I capture with the NewWindow event handler like so. WebBrowser w = new WebBrowser(); SHDocVw.WebBrowser_V1 web = ...
2
votes
3answers
2k views

Firefox window.opener issue

"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 be ...
1
vote
0answers
121 views

Refresh the parent window from the second child window in javascript

The work flow is like this, from my page , i created a popu using window.open method, then open other popup from that window and close its immediate parent. And i need to refresh the first parent page ...
1
vote
1answer
283 views

Issue with window.opener in trusted sites (IE8)

Here is my issue: I am opening a popup from the main browser window, where the use logs in to a 3rd party site. After logging in, the popup window is being redirected to our site, where I have to send ...
1
vote
1answer
85 views

Interesting quirk with the “with” keyword in javascript and parent/child windows

I noticed something peculiar about the "with" keyword in javascript and the parent and child window relationship, specifically window.opener. I haven't tested this from the parent window, just the ...
1
vote
1answer
369 views

window.opener becomes null in Internet Explorer after security zone change

My application runs in Local Intranet zone which launches a popup. This popup opens another page in my application (Local Intranet zone) which redirects to an authentication page (Internet zone) which ...
1
vote
1answer
589 views

Determine if window was opened by window.showModalDialog?

Does anyone know how to figure out if a window was opened by window.showModalDialog()? window.opener returns the parent window when the new window is opened by window.open(), but for some reason when ...
1
vote
0answers
357 views

Using window.opener.location to access a non-secure (http) opener from a secure (https) pop up

I am opening a popup which is under https from a web page which is under http. When I try to use the command window.opener.location.(href/str/port/domain.. etc) from the pop-up to get the url of the ...
1
vote
1answer
453 views

Firefox why window.opener is defined even for a new tab

I am porting quite old corp application from IE to Firefox. Here is my situation. User goes away from computer for a while and his session becomes expired. When user tries to access something in ...
1
vote
1answer
160 views

Need help tracking down a jQuery bug

I've been working on a popup window that interacts with the window.opener. I found a specific problem with IE not working when trying to append an object. I've set up a demo page here. Basically what ...
1
vote
2answers
5k views

window.opener.focus() fails in IE, and works in FireFox

i have the problem that IE cant bring up opener window when i call opener.focus() method window.opener.focus(); // After that, child window stay in front. html1.htm file: <script ...
0
votes
0answers
9 views

window.opener is null when loaded from flash content

I have a flash movie on a page which contains a button inside the flash - when clicked it opens up a html page in a popup. the new url is up a level but same host - the problem i have is that ...
0
votes
0answers
12 views

Window.Opener and Safari

We are having major problems getting our application to work in both Internet Explorer and Safari. Our application makes extensive use of Windows.Opener in Javascript. However, we get errors in ...
0
votes
1answer
19 views

calling javascript function in iframe from window.opener

I have a function in an iFrame (same domain) that I want to call from a popup. So basically I want to do something like ...
0
votes
0answers
36 views

KCFinder (CKEditor) no callback when clicking on a image (not sending image to editor)

I've integrated KCFinder with CKEditor and have ofcourse (as far as I can see) setted it up correctly. Using latest CKEditor 3.6.2 with KCFinder 2.51. The problem is when I've uploaded a image to the ...
0
votes
0answers
15 views

Protect window.opener from change

There is a JavaScript code that opens new page which tries to change the mother-page with the help of window.opener. I need to Protect mother-page from any change. Any advice on how to do it? Code ...
0
votes
1answer
34 views

How to disable open a new tab on form submit?

i have this search form and when you hit search it takes you to new window! i make a search on the code for (window) and i got this! any solutions? // and open it in a new tab ...
0
votes
0answers
18 views

Detecting events on a child window

In my page I have a button.When I click on it ,it should open a window .On that window there is another button.When i click on that button,i need to trigger an action in the parent window.Is there any ...
0
votes
1answer
801 views

window.opener.location.href works in IE but not Chrome or Safari

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 ...
0
votes
0answers
165 views

Prevent parent window from auto refreshing while child window closes

In my application I'm using 'window.open' method in href links in order to open new windows. The href link and its associates at the parent page look like that: href="#" onclick="startProcess('Some ...
0
votes
1answer
98 views

How to use .show() and .hide() with opener?

I have a page with few photos, when a photo is clicked, a div opens using the whole avaliable screen's space to show an album ... like the facebook's photo viewer. Now, I want to press the ESC key and ...
0
votes
1answer
393 views

JQuery Window.Opener

I am trying to write back some values to a parent page and have written the following but it is saying that SCRIPT5007: Unable to get value of the property 'document': object is null or undefined ...
0
votes
0answers
78 views

Changing parent.opener?

I am trying to write a script that brings me to a specific page directly. In a normal circumstances, I need to go through the following: Open the homepage Select a button, initiate a pop-up login, ...
0
votes
1answer
353 views

How can a popup window change the page location of its parent cross domain?

I hope someone can help me. I have a website that uses javascript to open a popup that exists at another domain. On the popup, I want a "book now" link/button that will change the page of the parent ...
0
votes
1answer
182 views

print google maps v3

I am trying to create a button that will print a google map embedded on a webpage see code: function print(){ var contents = window.opener.document.getElementById("map_canvas"); ...
0
votes
2answers
157 views

ASP.NET & Javascript: Setting values from one window to another

I have a child browser window (aspx) opened from the parent application. The child window has some controls, and a textbox. When the user is finished, s/he clicks a button and the following code takes ...
0
votes
0answers
154 views

Problems with window.open in an hta?

Today, something that was previously working suddenly stopped working. It had been working fine for months, and all of the sudden it just broke. I reverted back to previous code, in case I had ...
0
votes
0answers
274 views

JavaScript global scope/window opener?

I have perhaps quite complex question. But I need a clue where I have to start. You might know CKEditor. That is javascript based text editor, which allow you to connect you own file browser(server ...
0
votes
0answers
596 views

window.opener.close() does not work on mobile Safari

I got a question regarding Javascript on mobile Safari. I am opening a new window from JS code like this: gameWindow = window.open("http://site/folder/index.html","Windowname"); gameWindow.opener = ...
0
votes
0answers
432 views

upgrade window.open popup to jQuery UI Dialog

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 ...
0
votes
0answers
87 views

Passing text from multiple classes from popup to opener

I had this setup in an iframe in an order form but we've decided to break out this part into a popup window. This code worked to do what I wanted in passing data from the iframe to the form fields: ...
0
votes
1answer
526 views

ASP.NET: Programmatically fire a server-side event in window.opener with JavaScript

I have a DropDownList that fires off some server-side databinding in its OnSelectedIndexChanged event. <asp:DropDownList ID="ddlGroup" runat="server" AutoPostBack="True" ...
0
votes
1answer
836 views

open a popup in a UIWebView and retrieve a value to the opener

I'm developing an iPad app to load a web page (an ERP) and work with it. The problem here is that I can't modify the web page code (big site... 1000 pages or more) but we use all over the site search ...
0
votes
2answers
222 views

Doing an onchange event on a field in the parent window using jquery

I am not sure if this can be done. In the parent window, I have the following line, <input type="hidden" name="myField" id="myField" value=""> This parent window would open a pop-up window, ...
0
votes
2answers
2k views

JavaScript: 2 window.opener.location.href statements with alert() in between not functioning

I need to make a little JS app to scroll automatically through a list of URLs. I've chosen to have the functionality in a pop-up, for various reasons. The syntax to change the opening window's URL ...
0
votes
2answers
1k views

Problems with IE and appending to the window.opener

I have the following script that works well in Firefox and Chrome (not sure about other browsers), but it doesn't work at all in IE. It basically opens a popup which appends a div to highlight an item ...
0
votes
1answer
548 views

Opener Window… Navigate To URL?

Ok so my main window is going to open up a popup window, the popup window is going to contain a Flex app. The flex app is going to need to navigatToURL() but also send POST data along with it. ...
0
votes
1answer
396 views

window.opener & facebox

I opened a window in facebox. Now, I want to send some data to the opening window when the facebox window closes. I know how to do this with a normal pop-up but not with facebox and there doesn't seem ...
0
votes
1answer
3k views

window.opener in safari and chrome

I have a page that creates a popup window, then in the new window i created a new button element and attach a onclick event then attach it to the parent window. var openerDoc = ...
0
votes
2answers
809 views

Window.Opener and referencing by ID issue because of .NET control

I have a .aspx page that has a link on it, then when clicked opens a new window using window.open. I need to send a integer back and put that number into a textbox (which is a .NET control). When I ...