jQuery: How to disable tooltip
Posted
by epitka
on Stack Overflow
See other posts from Stack Overflow
or by epitka
Published on 2009-06-22T15:12:47Z
Indexed on
2010/05/25
2:11 UTC
Read the original article
Hit count: 491
Is there a way to disable browser tooltip from displaying when hovering over elements that have attribute 'title' populated? Note that I don't want to remove title content. Here is the code are requested:
$(document).ready(function() {
$('a.clickableSticky').cluetip({
splitTitle: '|',
showTitle: false,
titleAttribute: 'description',
activation: 'click',
sticky: true,
arrows: true,
closePosition: 'title'
});
});
and in asp.net
<ItemTemplate>
<a class="clickableSticky" href="#"
title=' <%#((Limit)Container.DataItem).Tip %>'>
<img src="..\App_Themes\default\images\icons\information.png"/>
</a>
</ItemTemplate>
© Stack Overflow or respective owner