Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Newbie question: I'm wondering how to refresh/reload a page (or even specific div) once(!) using jQuery? Ideally in a way right after the "DOM structure" is available (cf. "onload" event) and not negatively affecting "back button" or "bookmark" functionalities. Please note: ''replace('' is not allowed due to third-party restrictions. Thanks in advance! --Pete

share|improve this question
I am missing something in your question. What do you mean by "refresh" the page. If the page has loaded, reloading immediately would just load the exact same content, right? What are you trying to accomplish? – Doug Neiner Apr 1 '10 at 0:50
I'm working on a template which comes up "normally" first but is forced into an iFrame when refreshed/reloaded. Now I want the page to display in that iFrame on its first "call" as well. TIA! – Pete Apr 1 '10 at 1:02

10 Answers

up vote 48 down vote accepted

EDIT:

Alright, i think i got what you're asking for, try this

if(window.top==window) {
    // you're not in a frame so you reload the site
    window.setTimeout('location.reload()', 3000); //reloads after 3 seconds
} else {
    //you're inside a frame, so you stop reloading
}

If it is once, then just do

$('#div-id').triggerevent(function(){
    $('#div-id').html(newContent);
});

If it is periodically

function updateDiv(){
    //get new content through ajax
    ...
    $('#div-id').html(newContent);
}

setInterval('updateDiv()', 5000); // that's 5 seconds

So, every 5 seconds the div #div-id content will refresh. Better than refreshing the whole page.

share|improve this answer
Thanks but I want the page to refresh/reload only ONCE (per browser session if possible)...? – Pete Apr 1 '10 at 1:05
What's the trigger for reloading? a certain event or just time? – Ben Apr 1 '10 at 1:05
trigger: the first "call" of the page (sorry, my english is kinda poor g) – Pete Apr 1 '10 at 1:09
Try the solution i just edited – Ben Apr 1 '10 at 1:39
omfgroflmao, you're a genius! The "edited" version is exactly what I was looking for (the whole day btw...). Is it possible to add an optional time trigger here? So that location.reload is executed - let's say - after 3 seconds...? TIA (YOU've really made my day!) – Pete Apr 1 '10 at 1:55
show 4 more comments

To reload you can try this..

window.location.reload(true);
share|improve this answer
can you explain the bool argument? – tomfumb Nov 14 '11 at 19:27
3  
The argument to the location.reload function determines if the browser should retrieve the document from the web-server. If needed to pull the document from the web-server again (such as where the document contents change dynamically) pass the argument as 'true' grizzlyweb.com/webmaster/javascripts/refresh.asp – Secret Squirrel Dec 29 '11 at 15:43
1  
this does not work in chrome and safari for some reason. – Andrei Cristof Jul 13 '12 at 14:53
it works for me in chrome – Happy ninja May 18 at 18:36
window.location.href=window.location.href;
share|improve this answer
11  
<irony>this code actualy doesn't use jQuery</irony> ;-) – zerkms Apr 1 '10 at 0:57
$('#div-id').click(function(){

   location.reload();
        });

This is the correct syntax.

$('#div-id').html(newContent); //This doesnt work
share|improve this answer

You don't have jQuery refresh function because this is JS basic.

Try this:

<body onload="if (location.href.indexOf('reload')==-1) location.replace(location.href+'?reload');">
share|improve this answer
Nice one. you can even put it inside a function: <body onload="javascript:init()"> and function init(){ if (location.href.indexOf('reload')==-1) location.replace(location.href+'&reload');} – Adrian P. Feb 9 '12 at 23:40

try this code:

$('#iframe').attr('src', $('#iframe').attr('src'));
share|improve this answer

Use this instead

function timedRefresh(timeoutPeriod) {
    setTimeout("location.reload(true);",timeoutPeriod);
}

<a href="javascript:timedRefresh(2000)">image</a>
share|improve this answer
    <script type="text/javascript">
        $(document).ready(function(){

            //Check if the current URL contains '#' 
            if(document.URL.indexOf("#")==-1)
            {
                // Set the URL to whatever it was plus "#".
                url = document.URL+"#";
                location = "#";

                //Reload the page
                location.reload(true);

            }
        });
    </script> 

Due to the if condition the page will reload only once.

share|improve this answer

Why not simply use location.reload();?

share|improve this answer
<html>
<head>
<title>Reload (Refresh) Page Using Jquery</title> 
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript"> 
$(document).ready(function () {
    $('#reload').click(function() { 
          window.location.reload();             
    }); 
}); 

</script> 
</head> 
<body> 
    <button id="reload" >Reload (Refresh) Page Using</button>
</body>
</html>

You can find complete demo example

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.