css disable input title code example
Example 1: css removing title popups
$(document).ready(function() {
$("a").removeAttr("title");
});
Example 2: css removing title popups
<a href="" title="Something" class=".some-tooltip-class"><span title="">Your text</span></a>