//START: $(document).ready( function() { DrawHeaders(); getItems(false); //fill consignments var count = $('#' + itemsTable + '_T tr').length - 1; // -1 - thead row for (var index = 0; index != count; index++) { if (items[index].product_is_consignment) { $( "

"+items[index].part_no+"

" ).insertAfter( "#product_link_"+index ); } } });