Corporate Tax Rate Tracker

Data presented is based on information compiled up to May 2024.

Notes for ${selectedYear}: ${rateInfo.notes || "N/A"}

Historical Rates for ${countryData.officialName}

${historicalTableHTML}

Data compiled up to ${compilationDate}. Rates are for informational purposes and subject to change. Source for ${countryData.officialName}: ${countryData.source || "General public sources"}.

`; const printWindow = window.open('', '_blank'); if (printWindow) { printWindow.document.open(); printWindow.document.write(` Corporate Tax Rate Report - ${countryData.officialName} ${reportBodyHTML} `); printWindow.document.close(); setTimeout(() => { try { printWindow.focus(); printWindow.print(); } catch (e) { console.error("Printing failed:", e); alert("Could not open print dialog. Please check browser console for errors."); } // printWindow.close(); // Optional: uncomment to close after print dialog }, 500); } else { alert("Could not open print window. Please check your browser's pop-up settings."); } } // Initial call to set the stage if needed, or show placeholder displayRateInformation(); });
Scroll to Top