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().