Veuillez vous identifier

'; tab_text = tab_text + ""; tab_text = tab_text + export_no_dot; tab_text = tab_text + '
';*/ var tab_text = ` Export ${export_id.prop('outerHTML')} `; var data_type = 'data:application/vnd.ms-excel'; var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE "); // For IE if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) { if (window.navigator.msSaveBlob) { var blob = new Blob([tab_text], {type: "application/csv;charset=utf-8;"}); navigator.msSaveBlob(blob, export_name); } } else { $(this).find('a').attr('href', data_type + ', ' + encodeURIComponent(tab_text)); $(this).find('a').attr('download', export_name); } }); $('.tableCount tr td').each(function () { if ($(this).text() === '0.00') { $(this).text('N.C'); } }); }); function formatFloatNumber(nb, nbDecimals) { return parseFloat(nb).toFixed(2).replace(/(\d)(?=(\d{3})+\.)/g, '$1 '); }