私は要素を持っており、ユーザーがホバリングしているselect
ものを検出したいと考えています。ShankarSangoli が書いたoption
コードをここで使用していますが、機能していません。Chromeでテストしました。
$("select").hover(function (e)
{
var $target = $(e.target);
if($target.is('option')){
alert($target.attr("id"));//Will alert id if it has id attribute
alert($target.text());//Will alert the text of the option
alert($target.val());//Will alert the value of the option
}
});