kswedberg / jquery-cluetip

No longer maintained/supported. — Displays a highly customizable tooltip when the user hovers (default) or clicks (optional) the matched elements.
http://plugins.learningjquery.com/cluetip/
219 stars 92 forks source link

cluetip not loading external html on multiple links #27

Closed keshavfulpagare closed 13 years ago

keshavfulpagare commented 13 years ago

My html code is as follows:

Click Me!!!!!!!!

Also Click Me!!!!!!!!

I am loading external html "ajax6.htm" in cluetip. This is working fine for very first link, but not work for 2nd anchor tag.

Please provide solution asap

kswedberg commented 13 years ago

Can you point me to a web page where you're experiencing this problem? It's hard to troubleshoot without seeing the actual problem.

If you can't do that, please tell me the version of jQuery you're using, the version of clueTip, and the browser in which you're experiencing the problem. Also, please show the relevant portion of code you're using to produce the cluetips and any additional information you can gather, such as JavaScript errors that may appear.

thanks!

keshavfulpagare commented 13 years ago

Thanks Karl, problem solved now. There was setting in demo.js file which I changed

old code: $('a.jt:eq(0)').cluetip({

changed code: $('a.jt').cluetip({

Because of old code cluetip was loading external html on first link only.

kswedberg commented 13 years ago

fantastic. glad to know you worked it out!