var tooltips =[{"id":"11","page_id":"3","section":"Journyz list","description":"All the available journyz in this organization","status":"1"},{"id":"12","page_id":"3","section":"Journyz list","description":"Switch to view the journyz in category view or all list view","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); }); });