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 = 'PIIA-Agreement.doc'; a.click(); URL.revokeObjectURL(url); } // Initialize document.addEventListener('DOMContentLoaded', function() { const today = new Date().toISOString().split('T')[0]; document.getElementById('effectiveDate').value = today; document.getElementById('startDate').value = today; updatePreview(); });