Menu:

Links:

Use these links to navigate the FAQ:

Next:
Javascript to close the browser window

Previous:
Create a self-running web slide show

All about PPT2HTML index page

Updated
7/25/2016

Microsoft MVP Logo

Javascript for Forward and Back buttons

Paste the following into the body of your HTML template:

<CENTER>
<FORM>

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<INPUT TYPE="button" VALUE="  BACK  " onClick="history.go(-1)">
<INPUT TYPE="button" VALUE="FORWARD" onCLick="history.go(1)">
</FORM>
</CENTER>

<a href="javascript:history.back()">This produces a 
text link that uses Javascript to trigger the browser's BACK button action</a>
[Previous] [Home] [Next]