Skip to content

Instantly share code, notes, and snippets.

@mlhaufe
Created January 26, 2012 03:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mlhaufe/1680706 to your computer and use it in GitHub Desktop.
Save mlhaufe/1680706 to your computer and use it in GitHub Desktop.
HTML Combo box
<!doctype html>
<html>
<!-- Reference: <https://groups.google.com/group/comp.lang.javascript/browse_thread/thread/1f5810b6d34c8d50#> -->
<head>
<meta charset="utf-8">
</head>
<body>
<div>
<select onchange="this.nextSibling.value = this.value;this.nextSibling.focus()" style="width:2em;margin-left:2em;vertical-align:top;height:1.5em" id="opt">
<option value=""></option>
<option value="AB">AB - Alberta</option>
<option value="AL">AL - Alabama</option>
<option value="MN">MN - Minnesota</option>
<option value="TX">TX - Texas</option>
</select><input type="text" style="margin-left:-4em;width:2.3em;vertical-align:top;height:1.1em" value="" id="txt" size="2">
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment