Installed the Cluetip module and the Jq module, and made sure Cluetip was enabled at ./admin/settings/jq.

Added jq_add('cluetip'); to template.php for custom theme.
Added custom .js file to sites/all/themes/mytheme/js folder.
Followed instructions in the readme.txt file in cluetip.
Created a custom .html file to display in cluetip.

When I hover over my test link, I get what looks like a tool tip, but no cluetip.

If someone has a simple example they can post, it would be greatly appreciated.

Comments

mpruitt’s picture

Doh! It's the little things that always get me.

In my template.php file I found I added the following line:

drupal_add_js('sites/all/thems/mytheme/js/cluetip.js');

I spelled "themes" wrong!

Once I corrected it, everything worked as advertised.

I did learn one thing. I wanted to use this for links in a block, so I had to adapt the examples. The links for your .html files must be absolute.

For example, instead of:

rel="alpha5.html"
 and 
href="alpha5.html"

I had to use:

rel="http://mysite.com/alpha5.html"
and 
href="http://mysite.com/alpha5.html"