is there a way to refresh a page remotly from another page in javascript. i want to force the browser to do a refresh when i go back to a page which was displayed before. im doing some code in a page and it should show some results in another page, when i go to the page where i suppose to see the results, i have to press F5 to see them... so please help :))

link|improve this question

80% accept rate
1  
is pressing F5 that hard? – nickf Jan 10 '10 at 5:29
feedback

1 Answer

up vote 1 down vote accepted

I think you are looking for location.reload(true) (reloads from the server) or location.reload() (reloads from cache)

<a href="link_here" onclick="location.reload(true)">click me</a>

Hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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