I need to apply tooltip for the list that is feteched and shown using carousel. In that list of items whichever is wrapped with ellipses I need to show the tooltip for them.
But if I moveover mouse before sliding is completed then tooltip appears to be at the corner of page.
This is my code to show tooltip on mouseover.
I checked using .slid event given in their website & also by checking if carousel-inner child is active or not but this also doesn't work and both these events fire before the sliding is complete.
$('.tooltipcheck').mouseover(function() {
var $this = $(this);
if (this.offsetWidth < this.scrollWidth)
$(this).tooltip( {container: 'body'});
});