dropdown selected value is not firing in IE and working in chrome
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).live('dblclick', function(event){
var $target = $(event.target);
if($target.is('select option:selected',this)){
alert('ok')
}
});
</script>
</head>
<body>
<select name="select" id="select" size="10">
<option value="one">one</option>
<option value="ert">ert</option>
</select>
//This code is working fine in chrome but not working in IE.I wanted to work this code I am I am double clicking on element only.My list box size is 10 but having only 2 elements so the event should trigger whenever mouse is onselected item only.My list box is having empty space it should not trigger whenever its clicking the empty spce.Anyway above code is working wonder in CHROME and FF but not working in IE11.
Please help me out.