I donβt know for what reason you want to disable tooltips, but I myself ran into the same problem.
CSS, . , , .
jQuery "", . , "" .
DIV "":
<div class="tooltip-class" title="This is some information for our tooltip.">
This is a test
</div>
jQuery, Title :
$(document).ready(function(){
$(".tooltip-class").hover(function(){
$(this).attr("tooltip-data", $(this).attr("title"));
$(this).removeAttr("title");
}, function(){
$(this).attr("title", $(this).attr("tooltip-data"));
$(this).removeAttr("tooltip-data");
});
});
, jQuery jQuery 1.6.4.
:
http://jsfiddle.net/eliasb/emG6E/54/