Tombol Refresh
window.location.reload();
history.go(0);
window.location.href = window.location.href;
Contoh
<input type="button" value="Refresh Halaman" onClick="window.location.reload()" />
<input type="button" value="Refresh Halaman" onclick="history.go(0);" />
<input type="button" value="Refresh Halaman" onclick="window.location.href=window.location.href;" />
Back dan Forward
history.go(-1);
history.go(1);
Contoh
<a href="javascript:history.go(-1)">Kembali</a>
<a href="javascript:history.go(1)">Maju</a>
EmoticonEmoticon