jQuery(document).ready(function($) { $('.tablepress tbody td').each(function() { var columnHeader = $(this).closest('table').find('thead th').eq($(this).index()).text(); $(this).attr('data-label', columnHeader); }); });