Last active
December 24, 2015 11:09
-
-
Save AnimeshShaw/6788943 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
<!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