Live Preview
`; const blob = new Blob([html], { type: 'application/msword' }); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = `Severance Agreement - ${employeeName} - ${employerName}.doc`; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); } // Initialize document.addEventListener('DOMContentLoaded', function() { // Set default date to today const today = new Date().toISOString().split('T')[0]; document.getElementById('agreementDate').value = today; document.getElementById('separationDate').value = today; updatePreview(); });