<html>
<head>
<title>history.go() Method</title>
<script type="text/javascript">
function doGoNum(form) {
window.history.go(parseInt(form.histNum.value));
}
function doGoTxt(form) {
window.history.go(form.histWord.value);
}
</script>
</head>
<body>
<form>
<b>Calling the history.go() method:</b>
<hr />
Enter a number:
<input type="text" name="histNum" size="3" value="0" />
<input type="button" value="Go to Offset" onclick="doGoNum(this.form)" />
<p>Enter a word in a title:<input type="text" name="histWord" />
<input type="button" value="Go to Match" onclick="doGoTxt(this.form)" /></p>
</form>
</body>
</html>
|