Live Preview
`], { type: 'application/msword' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = `LOI_${getValue('buyerName', 'Buyer').replace(/[^a-zA-Z0-9]/g, '_')}_${getValue('sellerName', 'Seller').replace(/[^a-zA-Z0-9]/g, '_')}.doc`; link.click(); } // Initialize document.addEventListener('DOMContentLoaded', function() { const today = new Date().toISOString().split('T')[0]; document.getElementById('loiDate').value = today; const closing = new Date(); closing.setMonth(closing.getMonth() + 3); document.getElementById('targetClosingDate').value = closing.toISOString().split('T')[0]; updatePreview(); });