history.go
history.go
Out of context: Reply #6
- Started
- Last post
- 16 Responses
- n_m0
var pagenumber = 1;
function showNext(){
document.location.href = pagenumber + ".html";
pagenumber ++;
}<a href="javascript:showNext();">...
obviously, make sure the function is in an external file, and included, or pagenumber will remain as 1.