Use onClick with window.location.reload() , onClick .:
<button value="Refresh Page" onClick="window.location.reload();">
Or history.go(0) , i.e.
<button value="Refresh Page" onClick="history.go(0);">
Or window.location.href=window.location.href for a full reboot, that is:
<button value="Refresh Page" onClick="window.location.href=window.location.href">
Pedro Lobito Apr 26 '15 at 23:08 2015-04-26 23:08
source share