2 <title>JavaScript History tests
</title>
7 <a href=
"javascript:history.go(-1)">go(-
1)
</a><br>
8 <a href=
"javascript:history.go(1)">go(
1)
</a><br>
9 <a href=
"javascript:history.go(0)">go(
0)
</a><br>
12 History forward and back
<br>
13 <a href=
"javascript:history.back()">back
</a><br>
14 <a href=
"javascript:history.forward()">forward
</a><br>
17 buttons + history go
<br>
19 <input type=
"button" value=
"go(-1)" onClick=
"history.go(-1)">
20 <input type=
"button" value=
"go(1)" onClick=
"history.go(1)">
21 <input type=
"button" value=
"go(0)" onClick=
"history.go(0)">
25 buttons + history forward and back
<br>
27 <input type=
"button" value=
"back" onClick=
"history.back()">
28 <input type=
"button" value=
"forward" onCLick=
"history.forward()">