$(document).ready(function(){
$("#show-full-table").click(function(){
$("#hidden-table").removeClass("hidden-table");
});
$('#product_accessories table tbody tr').each(function() {
var $cells = $(this).find('td');
var hideRow = true;
$cells.each(function(index) {
if (index > 0 && $(this).text().trim() !== '') {
hideRow = false;
return false; // Przerwij pętlę if we find a non-empty cell after the first one
}
});
if (hideRow) {
$(this).addClass('hide-row');
}
});
});
Download
check_circle
check_circle
Sign in
You need to be logged in to save products in your wish list.