Skip to content

Instantly share code, notes, and snippets.

@AnimeshShaw
Last active December 24, 2015 11:09
Show Gist options
  • Save AnimeshShaw/6788943 to your computer and use it in GitHub Desktop.
Save AnimeshShaw/6788943 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<script language="javascript" type="text/javascript" >
function jumpto(x){
if (document.form1.jumpmenu.value != "null") {
document.location.href = x
}
}
</script>
<body>
<form name="form1">
<select name="jumpmenu" onChange="jumpto(document.form1.jumpmenu.options[document.form1.jumpmenu.options.selectedIndex].value)">
<option>Jump to...</option>
<option value="http://techmapia.com/">1</option>
<option value="http://techmapia.com/">2</option>
<option value="http://techmapia.com/">3</option>
<option value="http://techmapia.com/">4</option>
</select>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment