Execute Command : document « Javascript Objects « JavaScript DHTML
- JavaScript DHTML
- Javascript Objects
- document
Execute Command
<html>
<body>
<script language="JavaScript">
function function1() {
document.execCommand("Refresh", "false", "false");
}
</script>
<button onclick="function1();">Refresh page</button>
</body>
</html>
Related examples in the same category