简体   繁体   中英

jQuery clueTip: original tooltip is shown together with the cluetip tooltip (2 tooltips)

I have a problem with the jQuery clueTip plugin.

I'm initialize the plugin in this way:

$(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'
        });
    });
});

It is working, but after clicking and hovering a few times over my td elements, the title attribute is filled again and the original tooltip is displayed together with the cluetip tooltip (in Internet Explorer) .

Does anybody have an idea?

Screenshots

Page Load:

http://tinypic.com/r/vowexi/6

After clicking/hovering/acting:

http://tinypic.com/r/16j4ldi/6

I'm using jQuery 1.7.2 and cluetip 1.2.5 .

I've switched to simpletip .

I have no such a problem with this plugin, so this will be my choice.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM