Web Specialist wrote:
Karl,
I'll want to suggest a little change in your clueTip plugin. Using this
code:
<A class="cluetip_Help"
id="http://localhost/local/cluetip/demo/ajax4.htm" title="Testing new
clueTip Plugin">
Test
</A>
will display the hint for that link. This occurs because IE "reads"
title argument and displays that hint(native function).
Using this code resolve it:
<A class="cluetip_Help"
id="http://localhost/local/cluetip/demo/ajax4.htm"
title_clueTip="Testing new clueTip Plugin">
Test
</A>
and changing in jquery.cluetip.js:
// set up default options
var defaults = {
...
titleAttribute: 'title_clueTip',
Cheers
Instead of using an invalid attribute, the plugin should just remove the
title attribute if it exists - because that's what it does, enhancing
existing functionality...
--Klaus