Created
June 8, 2010 08:23
-
-
Save inazt/429755 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Select Example</title> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
$("#developer").change(onSelectChange); | |
}); | |
function onSelectChange(){ | |
var selected = $("#developer option:selected"); | |
var output = ""; | |
if(selected.val() != 0){ | |
output = "You Selected " + selected.text(); | |
} | |
document.location = ('http://' + output); | |
} | |
</script> | |
</head> | |
<body> | |
<h3>Developers</h3> | |
<select id="developer"> | |
<option value="0">Select Developer</option> | |
<option value="1">Todd Sharp</option> | |
<option value="2">Brian Meloche</option> | |
<option value="3">Ray Camden</option> | |
<option value="4">Sean Corfield</option> | |
<option value="5">Ben Nadel</option> | |
<option value="6">Mark Drew</option> | |
<option value="7">Rey Bango</option> | |
<option value="8">Mark Mandel</option> | |
<option value="9">Joe Rinehart</option> | |
<option value="10">Dan Vega</option> | |
</select> | |
<br /><br /> | |
<div id="output"> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment