Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Array-Tours

You are here: irt.org | Articles | JavaScript | Location | Array-Tours

Published on: Wednesday 1st January 1997 By: Martin Webb

tour-n.htm source code

<html>
<body>

<center>
<table height="100%"><tr><td>

<form name="form1"
  onSubmit="return parent.openDoc(document.form1.select1)">

<!-- This form uses JavaScript functions in the parent frame -->
<input type="button" value=" << "
  onClick="parent.goFirst();
           document.form1.select1.selectedIndex =
             parent.n">
<input type="button" value="  < "
  onClick="parent.goBack();
           document.form1.select1.selectedIndex =
             parent.n">
<input type="button" value="  ^  "
  onClick="parent.goHome()">
<input type="button" value="  > "
  onClick="parent.goForward();
           document.form1.select1.selectedIndex =
           parent.n">
<input type="button" value=" >> "
  onClick="parent.goLast();
           document.form1.select1.selectedIndex =
           parent.n">

<select name="select1">

<script language="JavaScript"><!--
//This script outputs an Option for each 'Link' object
//contained in the 'myLink' array in the parent frame
for (var i=0; i < parent.item; i++) 
  document.write(
    '<option value="' + parent.myLink[i].href + '">' + 
    parent.myLink[i].text +
    '<\/option>'
  );
//--></script>

</select>
<input type="submit" value="Go">

</form>

<script language="JavaScript"><!--
//This script sets the selected option
document.form1.select1.selectedIndex = parent.n;
//--></script>

</td></tr></table>
</center>

</body>
</html>

View the profile on Martin Webb and the list of other Articles by Martin Webb.


Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 21st December 2007. Maintained by: Martin Webb
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.