spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / pharmacy

Code (A Popup Menu)

Developer News
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?

<SCRIPT LANGUAGE="JavaScript">
<!--

// Copyright (c) 2000 internet.com Corp. 
// http://www.webreference.com/js/
// License is granted if and only if this entire
// copyright notice is included. By Tomer Shiran.

function load(form, win) {
  // menu - a reference to the select object
  // win - a reference to the window object
  win.location.href = form.menu.options[form.menu.selectedIndex].value
}

// -->
</SCRIPT>
<-- Example 1 -->
<FORM>
<SELECT NAME="menu" onChange="load(this.form, window)">
<OPTION VALUE="http://www.webreference.com/3d/">3D Animation Workshop
<OPTION VALUE="http://www.webreference.com/js/">Doc JavaScript
<OPTION VALUE="http://www.webreference.com/dlab/">Dmitry's Design Lab
<OPTION VALUE="http://www.webreference.com/dhtml/">Dynamic HTML Lab
<OPTION VALUE="http://www.webreference.com/outlook/">Internet Outlook
</SELECT>
<INPUT TYPE="button" VALUE="Load" onClick="load(this.form, window)">
<!-- or change "window" to "parent.frames[i]" for a frame target -->
</FORM>
<-- Example 2 -->
<FORM>
<SELECT NAME="menu" onChange="load(this.form, window)" SIZE="3">
<OPTION VALUE="http://www.webreference.com/3d/">3D Animation Workshop
<OPTION VALUE="http://www.webreference.com/js/">Doc JavaScript
<OPTION VALUE="http://www.webreference.com/dlab/">Dmitry's Design Lab
<OPTION VALUE="http://www.webreference.com/dhtml/">Dynamic HTML Lab
<OPTION VALUE="http://www.webreference.com/outlook/">Internet Outlook
</SELECT>
<INPUT TYPE="button" VALUE="Load" onClick="load(this.form, window)">
<!-- or change "window" to "parent.frames[i]" for a frame target -->
</FORM>

http://www.internet.com

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Rolling Out Your Own HTML Application Version Control · HTML 5: Client-side Storage · Working with Ajax Server Extensions
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Wi-Fi Product Watch, November 2009 · Chip Market Recovering From '08 Collapse · Low-Cost Tools to Kickstart Your New Business

Created: November 6, 1997
Revised: December 4, 1997
URL: http://www.webreference.com/js/pharmacy/menucode.html