I have the following JQuery code which I am trying to run inside one of my AngularJS application views but for some reason I can't track it is not working. Same exact code is working in any HTML page without the AngularJS app, so I was wondering if there is a conflict or problem in using this JQuery feature in an AngularJS app? and if not how I can make it work? Any example is highly appreciated.
jQuery(document).ready(function($){
$('.clientblock').hover(function() {
$(this).closest('.budget').find('.budgettooltip').stop(true,true).fadeToggle('fast');
});
});
Thanks