When using jquery.tipsy on pjax links, the tooltip doesn't hide on mouseout after the click.

This could mean that after the click, mouseout event is unattached from this element and that's why the problem exists ?

Here's how I load pjax & tipsy()

$(function () {
    $('[data-pjax]').pjax('#offer-table', {timeout: 100000})
})


<script type='text/javascript'>
  $('a.tipsy').tipsy({delayIn: 500});
</script>

jquery-pjax: https://github.com/defunkt/jquery-pjax

jquery tipsy: http://onehackoranother.com/projects/jquery/tipsy/

Edit: The same result if live: true added to the tipsy().

link|improve this question

36% accept rate
1  
You should always include links to plug-in references/source so people don't have to go searching in order to help you. – Mark Schultheiss Feb 22 at 13:54
Added, thanks for information. – Robert Feb 22 at 18:05
Is this the case for all links on the page? Or just those links which are a child of #offer-table? – jessegavin Feb 22 at 22:53
@jessegavin: Exactly. The problem occurs only for links inside the #offer-table. – Robert Feb 23 at 9:05
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.