ajaxの成功後のライブ要素では、cluetipの以下のコードは最初のクリックでのみ機能しません。それ以外の場合はスムーズに機能します。最初のクリックの問題は何ですか?
$('a.load-local').live('click', function(event) {
$('a.load-local').cluetip({
width: 'auto',
activation: 'click',
local:true,
sticky: true,
arrows: true,
positionBy:'bottomTop',
cursor: 'pointer',
closePosition: 'top',
closeText: '<img src="images/close1.jpg" alt="close" width="16" height="16"
style="position:absolute; right:5px; top:0px;" />'
});
event.preventDefault();
});