var tooltips =[{"id":"1","page_id":"1","section":"user-score-summary","description":"Engagement score,total activity count, total points, latest level achieved","status":"1"},{"id":"2","page_id":"1","section":"journyz count","description":"Total journyz available","status":"1"},{"id":"3","page_id":"1","section":"my journyz count","description":"Journyz that I have acted or invited","status":"1"},{"id":"4","page_id":"1","section":"my circle count","description":"Circles that I am part of","status":"1"},{"id":"5","page_id":"1","section":"escore","description":"Total engagement score trends","status":"1"},{"id":"6","page_id":"1","section":"trending journyz","description":"Journyz with more engagements","status":"1"},{"id":"7","page_id":"1","section":"My journyz","description":"Journyz that I have acted or invited to","status":"1"},{"id":"9","page_id":"1","section":"Newsfeed","description":"List trending,New,Expiring journyz","status":"1"}]; $(document).ready(function(){ $(document).find('.tooltip-help').each(function () { var tooltip = ''; var tooltipId = $(this).attr('data-tooltip-id'); $.each(tooltips, function () { if (this.id == tooltipId) { tooltip = ''; } }); $(this).append(tooltip); }); });