.
, jquery ( title, , , ) script:
(function($) {
$.fn.tooltipSuppress = function() {
$(this).hover(
function() {
$(this)
.data('title', $(this).attr('title'))
.removeAttr('title');
},
function() {
$(this).attr('title', $(this).data('title'));
}
);
}
})(jQuery);
, :
$('div,someOtherSelector,ecc').tooltipSuppress();