Could you just remove the alt text on mouseover and add it back in on mouseout? Untested (written in mail):

var imgAlt = '';

$('img').hover(function() {
  imgAlt = this.alt;
  this.alt = '';
}, function() {
  this.alt = imgAlt;
};


--Karl

____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Dec 1, 2008, at 3:24 PM, jen wrote:


This is the same issue I'm having.  Mac Safari and FF are good enough
to hide the regular browser title display, but Win 98 & XP show the
standard yellow title text.

Anyone else have this happen?

Thanks!
jen

On Nov 21, 4:56 pm, jmueller0823 <[EMAIL PROTECTED]> wrote:
Okay.
Looks like this is what's happening (in WordPress)

1. Using a text link,ClueTipworks perfectly.
2. If using an image, thetitledisplays when hovering the image.

Ideas anyone?  Thanks.

On Nov 20, 3:22 pm, jmueller0823 <[EMAIL PROTECTED]> wrote:

This is installed in Wordpress, wondering if WP default styles are
causing issue?
Otherwise,Cluetipworks fine.

Testing outside of Wordpress did not have this issue.

Thanks!

Jim

Reply via email to