`); printWindow.document.close();setTimeout(function () { printWindow.focus(); printWindow.print(); }, 800); }$('#exposities-form').on('submit', function(e) { e.preventDefault();var postId = $('#exposities-dropdown').val(); var itemsPerPage = 12;$.ajax({ url: ajaxurl, type: 'POST', data: { action: 'update_printable_list', post_id: postId, items_per_page: itemsPerPage }, success: function(response) { openPrintWindow('BooART QR Print', response, 'qr'); } }); });$('#exposities-form-thumbnail').on('submit', function(e) { e.preventDefault();var postId = $('#exposities-dropdown').val(); var itemsPerPage = 12;$.ajax({ url: ajaxurl, type: 'POST', data: { action: 'update_thumbnail_list', post_id: postId, items_per_page: itemsPerPage }, success: function(response) { openPrintWindow('BooART Thumbnail Print', response, 'thumbnail'); } }); });var hash = location.hash, interval = false;if ($(hash).hasClass('eael-tab-item-trigger')) { interval = setInterval(function () { if ($(hash + '-tab').is(':visible')) { let hash_height = $(hash + '-tab').offset().top; window.scrollTo(0, hash_height - 100); } }, 100); }$(window).on('load', function () { setTimeout(function () { if (interval !== false) { clearInterval(interval); } }, 500); });});