views:

1522

answers:

4

Hello, I want to suppress the web browser's default tooltip display when a user hovers over certain links and elements. I know it's possible but I don't know how. Can anyone help?

The reason for this is to suppress the tooltip for microformatted date-times. The BBC dropped support for hCalendar because the appearane of the machine-readable date was an accessibility issue for those with cognitive disabilities aswell as some screen reader users. http://www.bbc.co.uk/blogs/bbcinternet/2008/07/why_the_bbc_removed_microforma.html

EDIT:

I whipped up a jquery plugin along the same lines as Aron's suggestion...

// uFsuppress plugin v1.0 - toggle microformatted dates
(function($){
$.ufsuppress = function() {
 $(".dtstart,.dtend,.bday").hover(function(){
  $(this).attr("ufdata",$(this).attr("title"));
  $(this).removeAttr("title");
 },function(){
  $(this).attr("title",$(this).attr("ufdata"));
  $(this).removeAttr("ufdata");
 });
}
})(jQuery);

// Usage
$.ufsuppress();
+3  A: 

As far as I know it is not possible to actually suppress showing the title tag.

There are some workarounds however.

Assuming you mean you want to preserve the title property on your links and elements, you could use Javascript to remove the title property at onmouseover() and set it again at onmouseout().

// Suppress tooltip display for links that have the classname 'suppress'
var links = document.getElementsByTagName('a');
for (var i = 0; i < links.length; i++) {
    if (links[i].className == 'suppress') {
        links[i]._title = links[i].title;
        links[i].onmouseover = function() { 
            this.title = '';
        }
        links[i].onmouseout = function() { 
            this.title = this._title;
        }
    }
}
Aron Rotteveel
Nice, this is preferable to removing the titles altogether because they need to be present for user scripts and plugins like Operator. Very useful thankyou.
sanchothefat
I guess it's impossible to actually suppress the default browser behaviour then? That would be ideal but I do like this solution.
sanchothefat
JavaScript-Memory-Consumption-Awareness-Day: don't use function literals in loops, move them out of the loop if possible!
Christoph
In the case of microformatted dates the title attribute is the machine readable content which means it's unfortunately less useful and even confusing to some screen reader users.
sanchothefat
hehehe. Christoph mentions this often. I've actually changed my ways, thanks Christoph
meouw
@meouw: the current JavaScript implementations aren't that great performance-wise (change is happening, but some things just can't be optimized in a language as dynamic as JavaScript); so imo you should give the interpreters all the help you can ;)
Christoph
+2  A: 

Something like this in prototype would blank all title attributes of datetime microformats with a class of 'dtstart':

$$('abbr.dtstart').each(function(abbr){abbr.title=' '})

Note I used a blank space, the Mozilla documentation for element.title states

According to bug 264001 , setting title to the empty string triggers the default inheriting behavior. To cancel inheritance, title must be set to a non-empty whitespace string.

Paul Dixon
Thanks Paul, I looked at this option however ideally we'd need to preserve the titles so that other scripts and plugins can still use the machine-readable data stored in the DOM.
sanchothefat
+1  A: 

This won't help with your problem but might be interesting nevertheless: There's another universal attribute apart from title which can be used to store data - lang!

Just convert the data you want to store to a continuous string and prefix it with 'x-' to declare private usage in accordance with RFC 1766.


In the comments, sanchothefat clarified that he wants to solve the usability-issues with the abbr-design-pattern in microformats. But there are other patterns which are as semantically meaningful (or, in my opinion even more so) than this pattern. What I'd do:

<p>
 The party is at
  <dfn class="micro-date">10 o'clock on the 10th
   <var>20051010T10:10:10-010</var></dfn>.
</p>

together wtih these styles

dfn.micro-date {
    font-weight: inherit;
    font-style: inherit;
}
dfn.micro-date var {
    display: none;
}

In my opinion, the semantically most correct way would be to use a dl definition list - which isn't allowed inside of paragraphs. This can be worked around with the following pattern:

<p>
 The party is at <q cite="#micro-dates">10 o'clock on the 10th</q>.
</p>

<dl id="micro-dates">
 <dt>10 o'clock on the 10th</dt>
 <dd>20051010T10:10:10-010</dd>
</dl>

which requires a more sophisticated stylesheet:

q[cite='#micro-dates']:before {
    content: '';
}
q[cite='#micro-dates']:after {
    content: '';
}
dl#micro-dates {
    display: none;
}
Christoph
The problem I'm trying to (sort of) solve is the ongoing hooha with the abbr-design-pattern in microformats. One of the aims to use the most semantically correct markup available and an abbreviation of a date using the 'title' attribute was their choice. Unfortunately there were accessibility issues
sanchothefat
Very interesting food for thought there, I may have been a bit hasty choosing an answer...
sanchothefat
Do you want to post this suggestion to the uF-discuss mailing list/IRC or should I?
sanchothefat
Feel free to do whatever you like with these suggestions - I already asked on #microformats for comments - which included the suggestion to try to incorporate some form of include-pattern to support existing tools
Christoph
PS: I'd appreciate it if you'd add another comment if you really post a message to the mailing list - I'm not following this list, but I'd at least check the archives to see what other people think about this...
Christoph
Hi Cristoph, I've just posted to the uf-discuss list. Sorry it took me a while to get round to it. Should be in the archives momentarily under the subject 'value-title design pattern'
sanchothefat
A: 

I know this has been resolved but I also found this workaround: http://stackoverflow.com/questions/1299772/jquery-hide-native-tooltip-resolved

Phill Pafford