History 'back()' Example : History « Window Browser « JavaScript DHTML
- JavaScript DHTML
- Window Browser
- History
History 'back()' Example
<html>
<body>
<script language="JavaScript">
function function1(){
history.back(1);
}
</script>
<input type="button" value="Go back" onclick="function1();">
</body>
</html>
Related examples in the same category