This is a migrated thread and some comments may be shown as answers.

How to Disable Tooltip in TagCloud?

1 Answer 48 Views
TagCloud
This is a migrated thread and some comments may be shown as answers.
Eric
Top achievements
Rank 1
Eric asked on 17 Aug 2012, 04:11 AM
Greetings,

The TagCloud control automatically adds a title attribute to each tag which automatically generates a ToolTip, is there anyway to disable this for the TagCloud control?

Thank you.

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 17 Aug 2012, 05:17 AM
Hi Eric,

Try the following JQuery to achieve your scenario.

JS:
<script type="text/javascript">
    $(document).ready(function () {
        $(".rtcTagItem > a").attr('title', "");
    });
</script>

Hope this helps.

Regards,
Princy.
Tags
TagCloud
Asked by
Eric
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or