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

How can I refresh a page with jQuery?

share|improve this question

9 Answers

up vote 421 down vote accepted
$('#something').click(function() {
    location.reload();
});

Like mplungjan explained in the comment below, the reload() function takes an optional parameter that can be set to true to reload from the server rather than the cache. The parameter defaults to false, so by default the page reloads from the browser's cache.

share|improve this answer
2  
thanks... albeit there's gotta be a way to replicate a ctrl+f5 too... – foxybagga Oct 5 '11 at 17:50
You might want to check out some of the answers at stackoverflow.com/questions/1011605/…. – Roy Oct 6 '11 at 12:59
11  
@Secret Squirrel wanted to add that you can use reload(true) to load from server instead of cache – mplungjan Dec 29 '11 at 16:20
1  
should use vanilla js – opengrid Nov 6 '12 at 14:28
1  
In the above answer it will be asks alert box for reload a page. See my answer. – Naveen May 23 at 9:19
location.reload();

Should work on all browsers even without jQuery

share|improve this answer
7  
Upvoted, vapor.js is for winners. – Cobby Dec 12 '11 at 0:35
1  
Sorry, newb question, how is this related to vapor.js? Doesn't this work with vanilla js? – SSH This May 20 at 16:46
1  
@SSHThis it's a joke – Jack Douglas May 21 at 13:13
Oh funny, i don't get it – SSH This May 21 at 15:06

I don't think that the answers given are correct. The question is: reload page with jQuery, but the answers you have given are all about reloading with javascript. To reload a page with jQuery, do:

$.ajax({
  url: "",
  context: document.body,
  success: function(s,x){
    $(this).html(s);
  }
});

The approach here that I used was ajax jQuery. I tested it that worked on chrome 13. then I put the code in the handler that will trigger the reload. The url is "", which means this page I hope this explains it well and doesn't create any confusion?

share|improve this answer
I concur! This statement reload in a more elegant way, but it does not reload the entire page. It reloads only the body which is what most people need any way. – jonavon Dec 6 '11 at 12:44
6  
This should be the accepted answer! – Halo Jul 4 '12 at 22:45
3  
Downvoting. This does not really answer the question, but instead shows how to replace the page's HTML with an Ajax response. That's different from reloading the page: for example, I'm working with a situation right now where this would not work to solve the original problem. – Marnen Laibow-Koser Sep 29 '12 at 1:39
1  
Well you could post your difficulty here to seek help. But the code I posted is what I use to reload a notification div for a set interval. – Peter Oct 1 '12 at 14:13
1  
I'm wondering what would make someone to down-vote on this – Peter Feb 22 at 15:37
show 3 more comments

Lots of ways will work, I suppose:

  • window.location.reload();
  • history.go(0);
  • window.location.href=window.location.href;
share|improve this answer
This window.location.href=window.location.href; will do nothing if your URL has a #/hashbang on the end example.com/something#blah: – AaronLS Jun 12 at 16:01

It is better to use

window.location = window.location.pathname;

instead of window.location.reload(); Some of the browsers like Firefox opens ConfirmBox for resend.If you reload after post request.

share|improve this answer
this works better for me. – nickanor Dec 24 '12 at 6:01

The question should be,

How to refresh a page with javascript

window.location.href = window.location.href; //this is a possibility
window.location.reload(); //another possiblity
history.go(0); //and another

You're spoiled for choice

share|improve this answer
3  
I completely disagree with your statement about how it should be Javascript rather than jQuery. The solution may be Javascript but the truth is, there could quite easily be a more convenient method in the jQuery lib. The poster did not know what he was looking for. – Zach Inglis Oct 26 '11 at 10:54
Oh I agree :) I just mentioned that because there wasn't anything available in jQuery. Most of the time there is, but not this time and you're right in saying that the poster wouldn't have known. – JohnP Oct 26 '11 at 11:57

This is a little vague. What do you want to trigger the refresh? A button? After a set time period? This little bit of javascript will reload a page - it's up to you what triggers it.

window.location.reload();
share|improve this answer
not working in current version of Chrome (20.0.1132.57 m) – Andrei Cristof Jul 13 '12 at 15:21
window.location.reload();
history.go(0);

are asking retry alert box, but below does't it.

window.location.href=window.location.href;
share|improve this answer
$('#ID').click(function() {
    location.reload();
});

Simplest way to reload page.

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.