3 Ways to refresh/reload the page using javascript
- <input type=”button” value=”Reload Page” onClick=”window.location.reload()”>
- <input type=”button” value=”Reload Page” onClick=”history.go(0)”>
- <input type=”button” value=”Reload Page” onClick=”window.location.href=window.location.href”>