ホバー時にツールチップ (.tooltip 関数が呼び出されたアンカー要素のタイトル) を表示するこの素晴らしいツールチップを使用しています。今回はクリックで表示させたいので、こうしました。
$(document).ready(function(){
$(".icons a.tooltips").click(function() {
return $($(this).attr("href")).html().easyTooltip();
// Prevent the browser jump to the link anchor
e.preventDefault();
});
});
このための html は次のとおりです。
<div class="foo">
<a class="bar" title="Lorem ipsum" href="#"></a>
<a class="bar" title="meaningless text" href="#"></a>
<a class="bar" title="more meaningless text" href="#"></a>
<a class="bar" title="even more meaningless text" href="#"></a>
</div>