Window Open / Opener And Parentarent Not Working?
Jan 31, 2010
1. index.php:
Code:
<h3><a href="#" class="_facturatieB">(Facturatie)</a></h3>
<div id="_facturatie_ra">
</div>
2. index.php > left tree menu on click >
Code:
case 'Aanvragen':{
// This is a template
var db = myAjaxReturn('intranet/aaaaa/aaaaa.php', '');
[code]....
View 1 Replies
ADVERTISEMENT
Mar 14, 2009
Firstly I know this issue has been addresses a lot already but as a newbie to HTML and Web Development I am unable to get the idea. according to documentations and solutions proposed on different forums a popup or child window can be only closed using window.close() if it is opened via window.open() function.
[Code]...
View 2 Replies
View Related
Jul 30, 2011
The use of jQuery below does not work for IE9 but works beautifully for Firefox, Chrome & Safari. Before I rewrite it without jQuery, I was hoping to get some feedback on what I've done. Not certain about standards compliance, just know it works fine for all the browsers I'm testing except IE.The user provides an action from a popup window. The action references the opener window, removes a few elements from a hidden element and then immediately repopulates those elements with updated values based on that action.
Code JavaScript:
// does not appear work like this in IE9
window.opener.$('div#hiddenShiftAbbrList').empty();[code].....
View 3 Replies
View Related
Nov 15, 2010
My parent window is dash.html. From this i call a pat.jsp file which is a child window to dash.html. I wrote a function in dash.html
function feed_refresh(){
getGlaceCompleteDashBoardResult(1);
}
this function getGlaceCompleteDashBoardResult(1); is included in a .js file in dash.html file. Now from the pat.jsp i call the feed_refresh() function on onunload=db_refreshfeed(); like this.
var db_refreshfeed = function(){
if(REQUEST_TYPE)
window.opener.feed_refresh();
}
This code working nice in IE but in mozilla it throws uncaught exception.
View 3 Replies
View Related
Jun 9, 2009
I have a real problem with an e-commerce site which has worked for years without a hitch but with the uptake of IE8 (it seems) this problem is getting more and more frequent Problem: customer continues through checkout on main site (http:[url]....).
When they have to enter their credit card details, they click on a link to open a window (https:[url]....). The details are verified and if valid, the customer is returned to the confirmation page in the parent screen (http:[url]....) and the payment window is closed . Pop-up blockers are causing problems here but even when pop-up blockers are disabled, the confirmation page loads in a new window.I'm using :
<script language="JavaScript">
<!--
window.opener.location="<?php echo ($main_url);?>thanks.php>";[code].....
But the page always loads in a new window and not the parent window.Is there any way to load the confirmation page in the parent window?
View 1 Replies
View Related
Jun 8, 2009
I have a real problem with an e-commerce site which has worked for years without a hitch but with the uptake of IE8 (it seems) this problem is getting more and more frequent. Problem: customer continues through checkout on main site [URL] When they have to enter their credit card details, they click on a link to open a window ([URL]). The details are verified and if valid, the customer is returned to the confirmation page in the parent screen ([URL]) and the payment window is closed. Pop-up blockers are causing problems here but even when pop-up blockers are disabled, the confirmation page loads in a new window.
[Code]...
View 1 Replies
View Related
Apr 4, 2010
Code:
<html>
<head>
<script type="text/javascript">
function closeWindow()
{
window.opener.location='www.gafarrons.org'
[Code]...
the error message is "window opener is null or not an object"
View 4 Replies
View Related
Jul 14, 2006
I see how the window.opener works, pretty neat in that the pop window
knows the parent.
Is there a property that also knows the form field parent?
My function does not know which of the 3 select menus called it.
What can I do?
function onCarrierSelect() {
//
var frm = document.carrRequestForm.carrierList.selectedIndex
var selectCar =
document.carrRequestForm.carrierList.options[frm].text;
alert(selectCar);
if (window.opener && !window.opener.close)
window.opener.document.form(x how make global?).nbcarrier(x how make
global?).value = selectCar
window.close();
}
p.s. as an aside I know the form field name, it is literally in the
querystring, but that is ASP/vbscript and no way to get it into the
jscript function...
View 4 Replies
View Related
Jul 23, 2005
I have a parent window that pushes a new window object onto an Array
with the following code :
OpenChild()
{
//totalNumWindowsCreated is global
totalNumWindowsCreated = totalNumWindowsCreated + 1;
childWnds.push(window.open(link, "child" +
totalNumWindowsCreated,"dependent"));
..
..
..
}
This pops up a new window with every call. In the child window I call
a parent function onbeforeunload, appClose() :
function appClose(){
if (window.opener && !window.opener.closed){
window.opener.CloseChild(getQueryString("application"));
}}
This is in my frameset tag of the child code :
<frameset ... onbeforeUnload='appClose()'>
The window.opener.CloseChild() function is called perfectly when I have
one child window open, but as soon as I create another child window
both of the open child windows don't ever call it. They do both go
into the onbeforeunload appClose() function, but do not call the
window.opener.CloseChild() function inside of this routine.
Anyone have any ideas why when I have two child windows open I can't
access the window.opener functions?
I have tried taking each new window out of the array and used the
following code in CloseChild() :
CloseChild()
{
//win and totalNumWindowsCreated are both global
totalNumWindowsCreated = totalNumWindowsCreated + 1;
var win = window.open(link, "child" +
totalNumWindowsCreated,"dependent");
..
..
..
}
View 1 Replies
View Related
Feb 6, 2009
The Open Window in Javascript is not working properly in Firefox but is working in IE. What could the reason be?
[Code]...
View 1 Replies
View Related
Aug 11, 2011
I am trying to usw window.open , upload a file in the child window and then referesh the parent window. But once upload is done, window . opener .location.href or opener.location.replace sends a message back but I get a pop up blocker, so if I turn pop up blocker off, it opens in new page. I just want the parent page to refresh on the same window. This works on some employees stations but not on others..I don't know if there are any settings on IE that need to change, I tried everything...weird. does any one done this before?
View 1 Replies
View Related
May 4, 2011
code is not working in ie7 and ie8. working fine in ie6.
View 2 Replies
View Related
Jun 2, 2010
I am opening a word document created via FOP on click of a button in JSP page. My page is working fine for every browser except IE6. I have searched on net, and MS Site also. window.open is having problem with IE6.HOW CAN I a word document in new window in IE6.
View 9 Replies
View Related
Nov 13, 2011
I'm using window.showModalDialog but having an issue trying to set the parent window(main browser). I open modal window A which is then opens modal window B, top of modal window B onload I do window.opener.close()". My issue now is when i'm finished with B I set parent window(main browser) to a new url with window.opener.location. So my problem is modal window A the parent has been closed so window.opener.location will not work.
View 3 Replies
View Related
Oct 24, 2010
I have written a simple code to open up a new window onclick of a button as follows;
function loadExamp()
{
var reqType = getElementValue("reqType", 1);
[code]....
The problem is that this code is working on Google Chrome but not in Firefox and IE. Why is that and how can I resolve this issue.I am using Firefox 3.6.11 and IE 8.0.XX.Also I tried to open a new window using <a href> option with the same URL and its working but the only problem is that I want to pass my next JSP an argument which is only possible with function or script.
I googled it but couldn't find much information except that there is some security problem. For that I have disabled the 'Pop up Bloker' on both Firefox and IE but still not working.When I click my button there is no activity with 'Firefox' but IE gives me error as follows;
Message: Invalid argument.
Line: 74
Char: 2
[code]....
View 3 Replies
View Related
May 6, 2011
i am using a link on clicking which a new pop up window should open like
<a href="#" onclick="Popup(f_date,f_date1)"> Add more</a>
function Popup(date,date1)
{
var f_date=document.getElementById("f_date").value;
[Code]....
it is workin fine in ie6 and ie8 but in firefox on clicking it nothing is happening.
View 1 Replies
View Related
May 2, 2011
I have a requirement to generate a dynamic HTML which will show popup having certain fields like logged in username and some other values which i can find in the client side. I've written javascripts for all the stuff and methods are working fine. Now, the problem is showing them in a pop-up with a close button. I developed a method constructHTML and return a variable having constructed HTML based on return values of javascript functions.Now, I opened a new window using window.open() and trying to write this html string variable to the new popup.
View 2 Replies
View Related
Oct 11, 2006
I have a form that is in a popup window. I need the form to submit to the opener window. Is is possible to do that? The opener window is the main window so it is does not have a name and there are no framesets.
<form action="something.php" method="post" target="????">
I'd like to use window.opener in the target but that's JavaScript...
I know somebody has done this before and has the code.
View 2 Replies
View Related
May 1, 2010
I am trying to use the following script to link a thumbnail image to the full-size image in a new window:
Code:
<script type='text/javascript'>
function OpenNewWindow(bigurl, width, height)
{
var
[Code].....
However, nothing is happening. The original image appears. It is active but when clicked does not open a new window. I am very new to working with both JavaScript and PHP (let alone the two together) so I am hoping I am missing something obvious. Here is the site I'm trying to build. The images I need linked are on the pages under 2010 and 2009.
View 7 Replies
View Related
Jul 30, 2009
I am trying open a new window using this:
function newwindow(){
alert("step1");
//document.FORMANME.submit();
window.open('/popup.htm','popup');
alert("step2");
}
This works fine on all other browsers but not on IE with google tool bar.
View 2 Replies
View Related
Jul 23, 2005
I see this problem in IE but not Firefox. I have a page that opens a second page as a dialog box. If the Dialog is relaunched from a second instance on the page the Dialog window is reused, the controls are reinitialized but window.opener still refers to
the original opener. I have simplified code than demonstrated the problem. Code:
View 5 Replies
View Related
Jul 20, 2005
I'm trying to use window.open from inside a user defined function, and
it's not working.
Mountain Man
============
<script>
function openFootnote(contentURL) {
window.open('contentURL','footnotes','height=180,w idth=160');
}
</script>
I've tried calling on the function 2 different ways, as shown below.
Nothing happens either way.
<a href="javascript:(void)" onClick="openFootnote(fn1.html);">...</a>
<a href="javascript:(void)" onClick="return
openFootnote(fn1.html);">...</a>
View 2 Replies
View Related
Nov 3, 2011
I have some code which forces external urls to open in a new window, it works great but an Addthis I have added to the exclusion list still opens in a new window (which is a fallback if there is no .js etc) (as well as the popup appearing).Really not sure what to do about this, any suggestions will be welcome. Maybe change the new window method from simply adding the target="_blank"?
View 1 Replies
View Related
Jul 23, 2005
If i open a link either by using the right mouse menu "open in new window"
or press shift (IE) on the link the page will be opened in a new window.
From this window I can use the window.opener object to access the opening
window.
When doing this in NN7.1 I cannot access windows.opener. If I open the
window with window.open I can also use the window.opener to access the
opening window but not if I open the new window by pressing CTRL an clicking
the link or using right click "Open link in new window".
Is it only possible to access the window.opener if the window was opened
with window.open in NN7?
View 1 Replies
View Related
Jul 23, 2005
I have a normal window cotaining a form (named form1). The form has a text
input called imageURL. There is a button that, when clicked, opens a new
window that contains three frames (left, right and bottom.) In the right
frame is another form (named form2) with a hidden input (selected). When
form2 is submitted, I want the value of selected to be passed back to the
imageURL on form1 and then close. The code I have tried is as follows:
(From my frame...)
<SCRIPT language="JavaScript">
function passValues()
{
// pass variable back to parent window
window.opener.document.form1.imageURL.value =
document.form2.selected.value;
}
top.window.close();
</SCRIPT>
It closes just fine, but imageURL on form1 never changes.
View 3 Replies
View Related
Oct 20, 2005
This works fine and adds a new element to the list:
document.forms['formname'].elements['listname'].options[0] = new
Option('foo', 'bar');
... but using the following code in a popup window - IE crashes or tells
me that the server threw an exception:
window.opener.document.forms['formname'].elements['listname'].options[0]
= new Option('foo', 'bar')
View 3 Replies
View Related