[jQuery] Re: Cluetip Title displaying in FF and IE

2008-12-02 Thread Karl Swedberg
Hi Jen! Glad to see you on the list here. Sorry for the delay in getting back to you on this. Are you also having the problem only in WordPress? I'm not able to reproduce it. Here is a test page I put together. http://plugins.kswedberg/cluetip/demo/image.html The first image is using the

[jQuery] Re: Cluetip Title displaying in FF and IE

2008-12-01 Thread jen
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

[jQuery] Re: Cluetip Title displaying in FF and IE

2008-12-01 Thread Karl Swedberg
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

[jQuery] Re: Cluetip Title displaying in FF and IE

2008-12-01 Thread jen
Hi Karl, Jen from FOWD here. :) I tried putting that in it isn't working, but that's a great idea, and maybe, just maybe, I can learn how to write some javascript of my own along that line. I'll work on it with my reading tonight. If a definite answer occurs to you (in all that spare time you

[jQuery] Re: Cluetip Title displaying in FF and IE

2008-11-21 Thread jmueller0823
Okay. Looks like this is what's happening (in WordPress) 1. Using a text link, ClueTip works perfectly. 2. If using an image, the title displays when hovering the image. Ideas anyone? Thanks. On Nov 20, 3:22 pm, jmueller0823 [EMAIL PROTECTED] wrote: This is installed in Wordpress,