Possible Duplicate:
how to refresh a page using javascript?
how to reload (refresh) the web-page through java script only once not repeatedly. I want to refresh the page once at a time.
Possible Duplicate:
how to refresh a page using javascript?
how to reload (refresh) the web-page through java script only once not repeatedly. I want to refresh the page once at a time.
If you want to refresh (reload) the page you can use location.reload(true).
This link may help you to explore it further more Javascript Refresh Page
using history.go(0) refreshes the current page
if(location.search !== "?norefresh") location.href += "?norefresh".