Virtual Home Safety Checklist

Customize Your Checklist

Fire Safety





Electrical Safety



Structural Safety



Water Safety


Security Measures



Environmental Hazards


General Maintenance


Documentation and Compliance


`; embedCodeTextArea.value = embedCode; } const generateEmbedCodeButton = document.getElementById('generateEmbedCodeButton'); generateEmbedCodeButton.addEventListener('click', function() { generateEmbedCode(); embedCodeTextArea.select(); document.execCommand('copy'); alert('Embed code copied to clipboard!'); }); const downloadPdfButton = document.getElementById('downloadPdfButton'); downloadPdfButton.addEventListener('click', function() { const doc = new jsPDF(); const embedCode = embedCodeTextArea.value; doc.text(embedCode, 10, 10); doc.save('safety_checklist.pdf'); }); });