jQuery のclueTipプラグインに問題があります。
私はこの方法でプラグインを初期化しています:
$(function(){
$("#contentTable > tbody > tr").each(function () {
$(this).children("td:eq(3)").cluetip({
splitTitle: '|',
showTitle: false,
escapeTitle: true,
dropShadow: true,
cursor: 'default',
cluetipClass: 'info',
positionBy: 'mouse',
attribute: 'tooltip'
});
});
});
td
機能していますが、要素をクリックして数回ホバーすると、title
属性が再び入力され、元のツールチップがヒントのツールチップと一緒に表示されます (Internet Explorer の場合)。
誰かアイデアがありますか?
スクリーンショット
ページの読み込み:
クリック/ホバリング/操作後:
http://tinypic.com/r/16j4ldi/6
私はjQuery 1.7.2と手がかり1.2.5を使用しています。