Click here to Skip to main content
Licence CPOL
First Posted 28 Jul 2000
Views 935,852
Downloads 2,902
Bookmarked 27 times

Using JavaScript to handle drop-down list selections

By | 25 Jul 2009 | Article
A simple method of making dropdown lists automatically navigate to a new page when a new selection is made.

Introduction

We've all seen sites that feature drop down lists that automatically take you to your selection without you needing to make the cumbersome and lengthy step of hitting a "Go" button. If you've ever wondered how they do this then as you probably expected it's very simple.   

What on Earth am I talking about?

Picture a drop down list as follows:

Screenshot - dropdown.png

We often see a button next to the list that the user should press in order to actually activate there selection:

Screenshot - dropdown2.png

The user selects the value from the dropdown, hits Go, and the choice is made. By using javascript we can have the list notify us when a change is made, and we can essentially hit that Go button for the user. Not only do we save the use all the hassle of clicking on a button, we also get a handy reduction in the amount of screen real estate used.

How do we do it?

A typical dropdown list is instantiated using the following:

<select name=select1>
<option>Value 1</option>
<option>Value 2</option>
<option>Value 3</option>
</select>

(Give or take some attributes). What we do is add an attribute that instructs the page to call our handler for when the list selection is changed.

<select name=select1 onchange='OnChange(this.form.select1);'>

Our handler will look up the value that has just been selected, and navigate to an appropriate URL. An example of this is shown below:

<SCRIPT LANGUAGE="javascript">
<!--
function OnChange(dropdown)
{
    var myindex  = dropdown.selectedIndex
    var SelValue = dropdown.options[myindex].value
    var baseURL  = <Some value based on SelValue>
    top.location.href = baseURL;
    
    return true;
}
//-->
</SCRIPT>

What if the user isn't using JavaScript?

We use the <noscript> tag to help us. We provide a Go button for the list, but only show it if JavaScript is not present:  

<select name=select1>
<option>Value 1</option>
<option>Value 2</option>
<option>Value 3</option>
</select><noscript><INPUT type="submit" value="Go" name=submit1></noscript>

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Chris Maunder

Founder
The Code Project
Canada Canada

Member

Follow on Twitter Follow on Twitter
Google+
Chris is the Co-founder, Administrator, Architect, Chief Editor and Shameless Hack who wrote and runs The Code Project. He's been programming since 1988 while pretending to be, in various guises, an astrophysicist, mathematician, physicist, hydrologist, geomorphologist, defence intelligence researcher and then, when all that got a bit rough on the nerves, a web developer. He is a Microsoft Visual C++ MVP both globally and for Canada locally.
 
His programming experience includes C/C++, C#, SQL, MFC, ASP, ASP.NET, and far, far too much FORTRAN. He has worked on PocketPCs, AIX mainframes, Sun workstations, and a CRAY YMP C90 behemoth but finds notebooks take up less desk space.
 
He dodges, he weaves, and he never gets enough sleep. He is kind to small animals.
 
Chris was born and bred in Australia but splits his time between Toronto and Melbourne, depending on the weather. For relaxation he is into road cycling, snowboarding, rock climbing, and storm chasing.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionArticle dates PinmentorDaveAuld4:53 31 Jan '12  
AnswerRe: Article dates PinadminChris Maunder5:41 31 Jan '12  
Generalbackground color change in List box Pinmembervinothkumar_Dhakshinamoorthy3:25 28 Jan '10  
GeneralUsing JavaScript to handle drop-down list selections Pinmemberpadolsky4:58 11 Aug '09  
Generaldrop down multiple select PinmemberLokesh Lal18:10 16 Jun '09  
GeneralRe: drop down multiple select PinadminChris Maunder3:06 17 Jun '09  
GeneralRe: drop down multiple select PinmemberLokesh Lal6:51 18 Jun '09  
GeneralRe: drop down multiple select PinadminChris Maunder6:51 18 Jun '09  
GeneralRe: drop down multiple select PinmemberLokesh Lal18:00 18 Jun '09  
QuestionRequest:Answer PinmemberMember #393574422:41 18 Mar '07  
I have a dropdown box with state names and want district names to be displyed in another drop down box(district name corresponding to the selected option in the dropdown) show the code of this in javascript
 
Gitanjali_Dua@satyam.com
Questiondropdown(javascript) PinmemberParul Chaudhary21:04 28 Jan '07  
GeneralOpen/expand Dropdown by Script Pinmemberguruk1234:00 17 Oct '06  
GeneralRefresh/Update dropdown list options Pinmembermissyz7:23 17 Nov '04  
Questionnot using asp? Pinmemberangel_girl22:10 30 Dec '03  
GeneralUse of arrays PinmemberAnonymous0:59 12 May '02  
GeneralUse OnClick instead of OnChange PinsussDee A. Crouch10:19 17 Oct '00  
GeneralRe: Use OnClick instead of OnChange PinmemberSteven Gregg3:13 31 May '01  
GeneralRe: Use OnClick instead of OnChange PinmemberAnonymous1:01 25 Oct '01  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 25 Jul 2009
Article Copyright 2000 by Chris Maunder
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid