I use tooltipster plugin for my tooltip
$(function(){
$('.tooltip').tooltip();
});
Now the .tooltip
that were added later dynamically does not respond to tooltip()
Now many will say to call $('.tooltip').tooltip();
each time i add those elments. But since i have hundreds of thousands of elements that contain .tooltip
and are created from hundrends
of functions
I cannot call the $('.tooltip').tooltip();
hundred times . Is there any alternative ?