Safari 4.0.5 and FF 3.6.3 have this problem
IE and Chrome are ok
The first time when i click the link, two instances of close button shows. If during the same load, i click on another item, the previous clue tip hides and the new one shows with only one close button (right behavior). Image attached.
Property closePosition “top and bottom” both have this behavior. closePosition value “title” only shows one close button but it is not clickable.
JS Code:
$('.RetrievePasswordForm').cluetip({
cluetipClass: 'rounded',
showTitle: true,
sticky: true,
ajaxCache: false,
arrows: true,
dropShadow: false,
activation: 'click', //click, hover
height: 'auto',
});
HTML:
<a href="#" rel="test.htm" class="RetrievePasswordForm" title="Test">
<img alt="" src="/pics/btn/icons/view.GIF">
</a>
CSS change to show X right next to close button, this is the only change made to the plugin at my end.
.cluetip-rounded div#cluetip-close a {
color: #800000;/*#777;*/
background-image: url('/imaes/btn/icons/Delete.gif');
background-repeat: no-repeat;
padding-left: 15px;
}
Thanks in advance for your help in solving this problem.