This is my first time here. Hoping you guys will be able to help. I'm not very adept at programming mind you.
So I'm using http://iamceege.github.io/tooltipster/
I've got this to work with an image where hovering over this image causes a simple tooltip to pop up with a number in it. Now, this image is repeated twice on a single page: once in a carousel at the top of the page, and again in another carousel below this top one. And yet, while it works for the top one, it doesn't work for the second! I just can't understand why.
My code is simple enough:
jQuery(document).ready(function($){
$('#apd001').tooltipster({
theme: ['tooltipster-noir', 'tooltipster-noir-customized'],
animation: 'grow',
delay: 10,
distance: 1,
maxWidth: 115
})
.tooltipster('content')
});
Here's my code:
<div class="rate-con">
<div class="rate-excerpt">Writing Here</div>
<div class="rating3"></div>
<div class="apd101" id="apd101" title="Whatever Title"></div>
</div>
Any ideas guys?
Thanks in advance.
P.s. - Like I said, not very good with jquery so please kindly elaborate in ABC steps :)