FrontPage World Tips and Tricks
How
can I make those cool "Backwards" and
"Forwards" links that I see in the other Web
sites?
You know what we are talking about.
You have a Web site with a series of pages in a row.
Maybe you are telling a story, showing slides, whatever.
Wouldn't it be nice to have a Backwards
and Forwards button on your Web site?
You can do it in FrontPage by inserting a
little text into the HTML. It is really just a simple
JavaScript trick. Use this code accordingly:
<FORM>
<INPUT TYPE="button" VALUE=" BACK "
onClick="history.go(-1)">
<INPUT TYPE="button" VALUE="FORWARD"
onCLick="history.go(1)">
</FORM>
It really is that simple.
Return to
Tips and Tricks
|