Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  Please _click_ into the selectbox, then press a key - no message shows in console in chrome 23.0.1271.64 m<br/>
  But it fires in firefox etc<br/>
  It works as well in chrome, but only when using tab to focus the select <br/>
  <select>
    <option name="aaaa">xaxaxa</option>
    <option name="22">222xaxaxa</option>
    <option name="333">33xaxaxa</option>
  </select>
  
  
  <script>
  
    $("select").on("keydown", function(){
      console.error("keydoooooown");
    });
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers