Price Per Square Foot Calculator
Enter any two fields – the third is calculated automatically
Embed this calculator
`;
}window.toggleEmbedPanel = function() {
if (embedPanel.style.display === 'none' || embedPanel.style.display === '') {
generateEmbedCode();
embedPanel.style.display = 'block';
} else { embedPanel.style.display = 'none'; }
};window.copyEmbedCode = function() {
embedCodeTextarea.select();
navigator.clipboard?.writeText(embedCodeTextarea.value).then(() => alert('Embed code copied!')).catch(() => alert('Press Ctrl+C'));
};document.addEventListener('DOMContentLoaded', ()=>{
populateCurrency();
recalcAll();
document.getElementById('currencySelect').addEventListener('change', e => { currentCurrency = currencies.find(c=>c.code===e.target.value); recalcAll(); });
});
})();