Is there any way to suppress the pop-up titles on links, yet still keep them on the page for the visually impaired?
This works in jQuery.
var val; $('[YOUR_SELECTOR]').hover(function() { val = $(this).attr('title'); $(this).removeAttr('title'); },function() { $(this).attr('title',val); })