On live elements after ajax success, below code from cluetip is not working for first click only otherwise it works smoothly. What will be the issue for first click?
$('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();
});