Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my javascript code, in some point, i need to refresh the window (user has uploaded new image but in page still can see it)

i am wondering why is

location.href = location.href

not refreshing the window?

share|improve this question

3 Answers

up vote 6 down vote accepted

If you are wanting your to redirect your page, use:

window.location = location.href;

Or, if it is a simple case of refreshing the page:

window.location.reload();

share|improve this answer
The thing is that the line is a callback in a onCLose method function of the jquery-ui dialog feature; could it be e.preventDefault()'in it? – Toni Michel Caubet Feb 24 '12 at 0:26
I am just trying to simulate the browser default behavior from the callback of the ui-feature – Toni Michel Caubet Feb 24 '12 at 0:27

To refresh the window try:

window.location.reload();
share|improve this answer
+1: I was editing my response when suddenly I see you've put the same. – Neil Knight Feb 23 '12 at 14:29

if you really really need to refresh the page you should do

 location.reload(true)
share|improve this answer
Why really really? – Toni Michel Caubet Feb 24 '12 at 0:29
@ToniMichelCaubet i don't like a page that forces me to refresh the page. :) – Nicola Peluchetti Feb 24 '12 at 9:28
well... but in most of pages it is refreshed in a form onSubmit (its actually standard behavior)... isn't it? – Toni Michel Caubet Feb 24 '12 at 12:09
@ToniMichelCaubet one thing is if you submit a form and then the pages refreshes, one other thing is that you refresh a page through javascript: why are you doing that?Can't you refresh the page manually withouth calling the server? – Nicola Peluchetti Feb 24 '12 at 12:23

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.