frmqadocument

Lemur zaprasza

HOME




   inquiry.com

   

   Ask the JavaScript Pro




ANSWERS




   Q & A

   Ask a Question

   Microsoft's

     Knowledge Base




RESOURCES




   Search

   

   Useful Sites




ABOUT




   Who is the Pro?

   Usage Policies



  




Q & A - Pulldown Menu Hyperlink



Applies to These Versions
Categories




Version Numbers Not Applicable





Basics

Forms

Hyperlinks






How can I put a hyperlink in the "Option" of a Pulldown Menu?



If you mean you want to automatically go to a URL when the user selects an item from a SELECT control, then that's easy to do. Set the VALUE of each OPTION to the URL you'd like to go to when that option is selected. Then respond to the onChange event by setting the location of the top window (window.top.location.href) to the value of the selected item.


The code below works in both Internet Explorer and Netscape:


<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">

function selecturl(s) {
var gourl = s.options[s.selectedIndex].value;
window.top.location.href = gourl;
}

</SCRIPT>
</HEAD>
<BODY>

<FORM>

<SELECT NAME="urljump" OnChange="selecturl(this)">
<OPTION VALUE="http://www.devx.com">The Development Exchange</OPTION>
<OPTION VALUE="http://www.microsoft.com">Microsoft's Homepage</OPTION>
<OPTION VALUE="http://www.netscape.com">Netscape's Homepage</OPTION>
</SELECT>

</FORM>

</BODY>
</HTML>

See this code in action at .


Written by Boris Feldman

on 6/8/98.



Comments or problems with this site?


Copyright © 1998 by Fawcette Technical Publications, Inc. All rights reserved.

  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • teen-mushing.xlx.pl
  • Wątki
    Powered by wordpress | Theme: simpletex | © Lemur zaprasza