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.

I am trying to refresh the page with this statement in external javascript file after some processes.

window.location.href = window.location.href

It perfectly reload the page but I want to scroll to the specific location after reload. So, I put this on the page.

<a name="uploadImgSection"></a>

And change the javascript to

window.location.href = window.location.href + "#mypara";

This code doesn't reload/refresh the page either

window.location.hash = "#uploadImgSection";
window.location.href = window.location.href;

When I do that, it doesn't reload the page at all. Is there any way I can reload the page with scroll bar position?

share|improve this question
Use a PHP file to redirect to the new page? – Derek 朕會功夫 May 16 '12 at 5:20
No just html page. The purpose is refresh the page after running some javascript functions and scroll it back to that paragraph's position. – Jonas T May 16 '12 at 5:21
how are you calling window.location.href? if you are doing that on page load and you are hitting f5 and you are using firefox (or other browser that scrolls where you were before the f5 on refresh) this might be the problem – ajax333221 May 16 '12 at 5:35

3 Answers

up vote 7 down vote accepted
window.location.href += "#mypara";
location.reload();

First add the hash, then reload the page. The hash will remain there, and the page gets reloaded.

Tested, works.

share|improve this answer
1  
You are genius Derek. It works. Thanks man. – Jonas T May 16 '12 at 5:47
One other thing. It did refresh the page but it includes post data after the reload. How can I clean those? Those post data are preventing me to delete the data row. – Jonas T May 16 '12 at 5:50
What post data? – Derek 朕會功夫 May 16 '12 at 5:50
Please read this. stackoverflow.com/questions/2405117/… It does include those POST data which is preventing me to do other postback events. – Jonas T May 16 '12 at 5:53
Well, I don't know much about POST. You can ask a new question about it though, if you want to. – Derek 朕會功夫 May 16 '12 at 6:14
show 1 more comment
location.href=<url>+"#mypara"
share|improve this answer
2  
This doesn't reload the page at all. – Jonas T May 16 '12 at 5:28

Try this

           var urlString=window.location.href;
           var url=urlString.split("#")[0];
           window.location.href = url + "#mypara";
share|improve this answer
1  
This doesn't reload the page at all either. – Jonas T May 16 '12 at 5:35

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.