The problem is when you have a select with a parent div having a return false in a
mousedown event, like this :
So easy fix is either remove the parent div tag. or stop throwing false on mouse down event.
Google is yet to fix this error.
Ref: http://code.google.com/p/chromium/issues/detail?id=7423
Version: 21.0.1180.83 m
mousedown event, like this :
<div id="container">
<select><option></option><option>dsqds</option><option></option></select>
</div>
<script>
$(function(){
$('#container').mousedown(function(){
return false;
});
});
</script>
all other browsers keep the select being selectAble but chrome says no !So easy fix is either remove the parent div tag. or stop throwing false on mouse down event.
Google is yet to fix this error.
Ref: http://code.google.com/p/chromium/issues/detail?id=7423
Version: 21.0.1180.83 m