$(document).ready(function(event) { $('select').on('mouseenter','option',function(e) { alert(); }); });
$(function(){ $("select option").hover( function(){ $("#iconInfo").show(100, 'linear');$.ajax({url: "/info/home.php",cache: false,success: function(html){$("#iconInfo").html(html);}}); }, function(){ $("#iconInfo").hide(); } );