I have a big enterprise web application for which I want to enable jQuery UI tooltip for selected elements. Lot of elements are generated dynamically after the application is initiated and henceeven if I geive id, it does not work. The only way it work is when I do this :
var $dj = jQuery.noConflict();
$dj(function() {
$dj(document).tooltip({
position: {
my: 'left center',
at: 'right+5 center'
},
show: 1300,
hide: 2999
});
});
But this enables tooltip for every element on the application which is not desirable. Please guide me !
Thanks