I want to clone question mark with title. Everything works but when I hover over new question marks tooltip appears on first question mark. Any idea?
I am using jQuery and tipsy tooltip.
<div id="me">click here</div>
<ul id="cloneme">
<li>
<p class="help-mark" original-title="it's me tipsy">?</p>
</li>
</ul>
$('#me').on('click', function(){
$('ul#cloneme li:first-child').clone(true).appendTo('ul#cloneme')
})
$(".help-mark").tipsy({
fade: true,
offset: 10,
opacity: 1,
gravity: 'nw'
});