Javascript reload() Method
Javascript reload() Definition and Usage
The reload() method is used to reload the current document.
Javascript reload() Syntax
Javascript reload() Example
<html>
<head>
<script type="text/javascript">
function reload()
{ window.location.reload() }
</script>
</head>
<body>
<input type="button" value="Reload page" onclick="reload()">
</body>
</html> |
|