Tag Archives: reload current page in Javascript

How to reload current page in Javascript

There are 3 ways how to achieve this task. <input value='Reload Page' onclick='window.location.reload()' type='button' /> <input value='Reload Page' onclick='history.go(0)' type='button' /> <input value='Reload Page' onclick=window.location.href=window.location.href' type='button' /> The button click is used to fire the loading. You can assign the … Continue reading

Posted in javascript | Tagged | Leave a comment