thanks for the info.

Another thing you can check is whether you are including the Dimensions plugin. (it's a dependancy.) If it's in there, then the next thing I'd like to know is the version # you're using for jquery core, dimensions, and cluetip. Of course, if you have a page you can show me with the problem, that would be even better. The more information I have regarding your particular situation, the better I can help you.

The plugin is already doing the iteration ( return this.each() .... ), so that shouldn't be relevant.


--Karl
_________________
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On May 1, 2008, at 8:19 AM, sprak wrote:


That's already in place on the page; here is the exact doctype we are
using:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"; xmlns:v="urn:schemas-
microsoft-com:vml" xml:lang="en" lang="en" dir="ltr">


Here are a few other details that might be of use; the script
$(document).ready(function() { $('td.sricon img').cluetip({showTitle:
false, positionBy: 'mouse'}); } );
returns multiple elements and is applying a cluetip to each element.
I tried modifying the script to
use .each() to iterate over the elements in case the position
calculations were being done once and
applied to each item.  This did not work either.

The whole page is a MediaWiki setup, so there are various wiki related
JS libraries included on the
page along with a JS library used to render our menus.  Looking
through the cluetip code and the code
for these libraries, I'm not seeing anything that would conflict with
each other.  However, I will look
into turning those libraries off temporarily and see if that does
anything.

Thank you.

Regards.

- Luis

On Apr 30, 4:42 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
it's possible that the problem has to do with the page being in quirks
mode, though I can't tell for sure without more information.

Could you try using a doctype & system identifier to put the page into
standards mode?

For example:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>

or

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd";>

thanks.

--Karl
_________________
Karl Swedbergwww.englishrules.comwww.learningjquery.com

Reply via email to