<select id="myselect">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
Whenever an option in the select is clicked, I need to call an ajax with
$("#myselect option").click(hanler)
event handler.But this feature is not working in Safari Browser
ex:
$("#myselect option").click(function(){
// call ajax
})