Unfocus A Window - During Refresh!!
Jul 23, 2005
I'm developing an application that involves multi-screen in different
windows. One of my windows involves an automatic refresh every 99 sec.
The problem is that the window is coming into focus each time the
refresh occurs. How can I prevent this from happening?
Implementation of refresh as follows:
____________________________
function refreshPage(){
query4 = "<?php echo $_GET['query4']?>";
window.location.href = "fluxOT_frame.php?page_id=0&query4=" + query4 +
"&services=<?php echo $service?>&go_ahead=1&code_er=<?php echo
$cod_er?>&code_appli=<?php echo $code_app?>&periode=<?php echo
$period?>";
}
timeout = <?php echo $period;?> * 1000; // where period = 99
window.setTimeout("refreshPage();",timeout);
____________________________
View 2 Replies
ADVERTISEMENT
Jan 3, 2003
I have a textbox that I don't want people to be able to click. Is there like a document.getElementById('text').unfocus() or do I just have to set focus to another element??
PHP Code:
onFocus="document.getElementById('submit').focus()"
View 1 Replies
View Related
May 15, 2006
I have a select box that when clicked, a js calendar will be displayed beneath it. The problem is that the select option drop-down appears over the calendar.
To make it disapear I have used blur() to make it lose focuse and the options disapear in Firefox. IE though is not cooperating.
View 3 Replies
View Related
Oct 4, 2006
I have a web page with four frames in it. If,
within one of the frames, i use a javascript
function to do something like:
window.location = "app.cgi"
Only the frame that contains the JS will refresh.
I need to refresh all four frames from within one.
How do I do that??
View 1 Replies
View Related
Oct 14, 2005
I have a pop up window is for the user to submit some information.
That window is refreched a few times with the user inputs (its a form
submit in itself... couple of times). I would like that window to close
after the user submits a rating and refreshed the original page that
opened the window.
I cant use opener.document.refresh because afterall the page isnt
considered the opener after the user posts the information on the pop
up window.
View 10 Replies
View Related
Jun 22, 2006
I know Window.opener.refresh() does not work if two windows are from a
different domain.
Anyone a (javascript)-solution for this problem?
View 3 Replies
View Related
Mar 17, 2011
Alright I have an Iframe, and at the end of that Iframe I have set a variable with JS to be equal to TRUE, indicating that the page has run through the script. I then check that the iframe from the parent window for that variable, if it has not been set yet (or does not equal true) it reloads the iframe.
The code works fine FF and Opera. However in IE it does not reload the frame if it is not true, and in Chrome it alerts undefined and does not reload the frame I have tried accessing the frame through the dom and it did not work for me, and i have also tried simply adding a tail to the iframes source with no success. :confused:
[Code]...
View 2 Replies
View Related
Mar 18, 2004
I have a window which opens a second window. The second window contains an IFRAME. How can I refresh the first window from within the IFRAME in the second window?
View 8 Replies
View Related
Jul 20, 2005
How can I make a parent window of a iframe refresh after a certain site is loaded in the iframe?
View 1 Replies
View Related
Aug 30, 2007
Using JavaScript, how do I open a Child Window, upon clicking a link in the Parent Window? Is it possible to have a Refresh button on the parent window, that refreshes the parent window onclick?
View 2 Replies
View Related
Aug 28, 2006
I'm not sure if this question should go to the "JavaScript" section;
but I'm open to non-JavaScript (like VBScript) options too. So, I'm
posting this here.
I have the following problem:
For my application, I need to ask a confirmation when the user closes
the browser-window. If the answer is positive, I would like to log-off
the session and close the window. If the answer is negative, I would
like to stay back (no logging-off, no closing the window).
I can't do this in the window.unload event because the window is
already closed when the unload event is fired. I tried doing this in
the beforeUnload event. But the beforeUnload event gets called even
when I refresh the page and in that case, I don't want to ask this
question or logoff.
View 1 Replies
View Related
Aug 24, 2011
To make a long story short when I do a redirect like this...
Code:
if(window.location.hash.length > 0){
window.location = "http://" + "<?php echo $_SERVER['HTTP_HOST']; ?>" + "/" + window.location.hash;
}
it goes there, but on the refresh php can't see what was appeneded with the window.location.hash, so its like I'm going to
[Code]...
View 3 Replies
View Related
Nov 3, 2010
I am a visual designer that can usually install pre written code without to much difficulty. And, indeed I have installed FancyBox
I am working with a dynamically generated page written in ColdFusion. Three divs on the page contain FancyBox links that open editing screens. Once editing is complete and the user closes the FancyBox modal the changes need to be reflected on the parent page.
Right, so I was able to find a solution that refreshes the entire page
'onClosed': function() {
parent.location.reload(true); }
});
to refresh the entire parent page. But, that causes a browser prompt that is confusing to users and a bit of over kill as I really only need the information edited to refresh.
How, oh how can I get just a single div to refresh "onClosed" as apposed to the entire page?
View 1 Replies
View Related
Dec 7, 2010
I've got some popup windows with help screens in them. The screens are other pages of my site specially sized to fit. Those pages have links to other pages, so users can navigate them inside the popup.So I thought I'd do two things:
1. Put a back button in the popup to let the user go back one or more pages in the help screens. But a simple button saying history.back() or history.go(-1) just does nothing.
2. Let the user refresh the pop-up content so that the user can go back to the first page of the help screen without having to close the pop-up and reopen it from the main page.But a simple refresh button saying location.reload(true) or window.location.reload() also does nothing.There is a button in there that works OK, window.close().Am I missing something fundamental about the nature of popup windows?I don't really want to have my help screens open in new browser tabs because I know people won't bother to close them.
View 6 Replies
View Related
May 9, 2011
why my simple javascript to refresh the parent window doesn't work in IE8? When the child window closed, it reopen another new window for the page I want the parent window to refresh and nothing happened on the parent window.How can I make it load the page from parent window instead of a new window ??? it works perfectly in other browsers but not IE.
Code:
<script language="JavaScript">
<!--
function rent() {[code].....
View 1 Replies
View Related
Sep 30, 2010
I want to be able to open a window with a variable. For example, I will use domain.com?reference=1234- This link will open a pop up window as follows:
<a href="javascript:popUp('http://www.domain.co.uk/staff/tpr/update_action_log.php?action_reference=<?php echo $row2['action_reference']; ?>')" title="Click Here edit this entry"><?php echo $row2['action_reference']; ?></a>
When I open this window, it is always showing data put in last, it isnt refreshed. I wanted to open this pop up window, enter data and then click submit and make the data enter the database and then refresh the parent window. Every time I have done this, either the parent or the pop (or both) is showing old data.
View 9 Replies
View Related
Nov 1, 2011
Here is the url:The issue, as you will see, is initially when my front page loads the "menu" animates into place. Then after a button is clicked:
$(".home_button").click(function() {
$('#content_menu').stop().fadeOut(1000,function() {
window.location = "http://jquery.com/";
[code]...
That all works fine. The issue is when I use the back button on the browser to return to the home page the animation never triggers and the page remains unusable until a refresh. How can I have this page refresh when the user uses the back button and/or is there a better way to do what I'm asking?
View 1 Replies
View Related
Jan 2, 2009
I have this code in a page that appears in my iframe if requested from parent:
<script type="text/javascript">
parent.rrr();
</script>
The parent code is:
function rrr() {
javascript:location.reload(true);
}
So, the person clicks a link from the parent, it does a php process in a hidden iframe, which then tells the parent page to refresh. The only problem is that it puts Firefox in a constant loop of refreshing. IE and Chrome work fine. They refresh once and stop.
Though the src code opens the iframe like so: <iframe src="" style="display:none; height:1px;" name="hdplus" id="hdplus"></iframe> Firefox seems to refresh the page with the memory of the child page being in the iframe, constantly looping the child request to refresh the parent.
Why won't Firefox just accept that no page should load in the iframe, as stated in the code? I need to stop this loop, which means I need to get firefox to reset the iframe as it reloads the page.
View 2 Replies
View Related
Aug 11, 2009
How to refresh DIV , without refresh entire page,Am having four DIV ,
DIV1,DIV2,DIV3,DIV4
I want to refresh only DIV! without affecting the DIV3,DIV4 ,
View 8 Replies
View Related
Apr 13, 2011
I have the below code:
<script type="text/javascript">
function loadQuickMessageCheck(File,ID){
var xmlhttp;
[code]....
View 2 Replies
View Related
Apr 15, 2010
So my problem is that i can't send form data in FF without page refresh (though in IE7-8 everything works smoothly).
My code fragments:
View 1 Replies
View Related
Jan 29, 2010
I have a HTML and I am opening another link in a separate window using window.open() . The child window is something like 'http://yahoo.com' which is out side html. I need to refresh the parent window when the child window is closed.
View 4 Replies
View Related
May 11, 2011
My WEB site opens an application window and then, from its original window it navigates to a status page.
Code:
var newWindow
function popUpApplication() {
[code]...
View 5 Replies
View Related
Mar 24, 2011
i have this code i need to close the parent.html window when the child window opened, i need the code for that working well in IE and Firefox Parent.html
<HTML>
<SCRIPT TYPE="text/javascript">
function sendTo()
{
window.open('child.html','_blank','resizable=yes,width='+(screen.width-500)+',height='+(screen.height-500)+'');
}
[Code]...
View 2 Replies
View Related
Jan 29, 2006
I need a script that will open a new window (popup / new link) in a specific size, but will also close the old window (where the popup came from). I know the popup window is easy but finding a work-able close window script as the new window is opened is impossible!!
View 3 Replies
View Related
Jan 8, 2004
I have a popup window which has the search form in. What I want to do is for the popup window to close once the form is submitted, and to post the form data to a page on the main window.
Is anyone able to advise. As the main page is dynamic, it is not possible to give the page a name.
View 4 Replies
View Related