Skip to content

Instantly share code, notes, and snippets.

@johnmccole
Created June 27, 2023 08:21
Show Gist options
  • Save johnmccole/6dc775c5c6ffad3b0ec34b1a908b6e75 to your computer and use it in GitHub Desktop.
Save johnmccole/6dc775c5c6ffad3b0ec34b1a908b6e75 to your computer and use it in GitHub Desktop.
<select onchange="gotopage(this)">
<option value="">Select</option>
<option value="https://www.google.com">Google</option>
<option value="https://www.yahoo.com">Yahoo</option>
<option value="https://www.msn.com">MSN</option>
</select>
<script type="text/javascript">
function gotopage(selval){
var value = selval.options[selval.selectedIndex].value;
window.location.href=value;
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment