マウスオーバーまたはホバーで日付を表示したいのですが、今はオンクリックです。ツールチップを使用してデータを表示しましたが、マウスオーバーでデータを表示したいです。いろいろ試しましたが、うまくいきませんでしたか? どんな体でも助けていただければ幸いです。よろしくお願いします。
これは私のコードです。クリックでマウスオーバー/ホバーに変更したいです。
<script>
$(".ajax_link").click(function(e) {
e.preventDefault(); //Stops link from changing the page
var link = $(this).attr('href'); //Gets link url
$.ajax({ //Make the ajax request
url: link,
cache: false
}).done(function( html ) { //On complete run tooltip code
//Display tooltip code goes here, returned text is variable html
.done(function( html ) {
alert("text: " + html);
});
});
});
</script>