home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 - Homepage / CHIP.BIN / share / htmledit / bashhtml / bashhtml.exe / %AppDir% / scripts / Back-Forward.txt < prev    next >
Encoding:
Text File  |  2003-09-01  |  425 b   |  10 lines

  1. [DESCRIPTION]Creates buttons which move a frame back or forward in the browser history. Especially useful for I-Frames.[/DESCRIPTION]
  2.  
  3. [HEAD CODE][/HEAD CODE]
  4.  
  5. [BODY CODE]<form>
  6. <INPUT TYPE="button" VALUE="BACK" onClick="parent.myframe.history.back()">
  7. <INPUT TYPE="button" VALUE="FORWARD" onClick="parent.myframe.history.forward()">
  8. </form>[/BODY CODE]
  9.  
  10. [NOTES]Replace "myframe" with the name of your frame.[/NOTES]