$(document).ready(function() { $('input.files').click(function() { $("#hideDIV").show(); // Build the pipe-delimited list of filename values var piped_files = ''; var count = '0'; $('input.files:checked').each(function() { var file_name = $(this).val().replace("http://raportroczny.lotos.pl/", ""); piped_files += file_name+'!'; $(".pdf_hide").hide(); var testvar =[]; count++; // console.log(file_name, piped_files); }); $("#chk_count").show(); $('#chk_count').html(count+" Files checked" ); // Make the AJAX request to construct the new link $.ajax({ 'url' : '/en/site/all-download', 'dataType' : 'html', 'type' : 'post', 'data' : { 'files' : piped_files, 'csrf_token' : "dab553b977094b287c7f4b94b41ed0ee111e53ec" }, 'success' : function(data) { $("#hideDIV").hide(); // Replace the old link with the new link $('#download_link_box').html( data ); } }); }); });