jQuery(function($){
// Responsive Table
$('.table-mobile-full').each(function(){
var $table = $(this);
$rows = $table.children('tbody').children();
$table.children('thead').children().children().each(function(i) {
var text = $(this).text();
$rows.each(function() {
$(this).children().eq(i).prepend('<span class="mobile-title">' + text + '</span>' );
});
});
});
});