x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
5
<input type="button" value="Refresh Page" onclick="document.location.reload(true);">
6
7
<!-- Test the refresh by outputting the time in milliseconds -->
8
<script>
9
  document.write(new Date().getTime()); 
10
</script>