Dynamically remove the title tooltip after they’ve been rendered on the page. If you absolutely must remove them, this is the system I’d recommend because the title will still be in the HTML code (for screen readers) but will be removed when the document loads so you avoid the “random, non-descriptive” tooltips.
Using jQuery, you can select all <a/> elements on the page that have a title attribute and remove it. Example:
jQuery(document).ready(function($) {
$('a[title]').each(function() { $(this).removeAttr('title'); });
});
