Child Custody Agreement Generator

Child Custody Agreement Generator

Create a foundational parenting plan and custody agreement.

Parent A Information

Parent B Information

Children's Information

Physical Custody

Where the child primarily lives.

Legal Custody

Who makes major decisions (health, education).

Parenting / Visitation Schedule

Describe the regular schedule for parenting time.

Child Support

Healthcare

No agreement generated

Complete all previous tabs to generate the agreement.

${data.parentB.name} (Parent B)

Disclaimer: This is a sample document for informational purposes only and does not constitute legal advice. You should consult with a qualified attorney to address your specific situation.

`; }; // --- PDF DOWNLOAD --- window.downloadPDF = () => { if (typeof jspdf === 'undefined' || typeof html2canvas === 'undefined') { alert("Could not generate PDF. A required library is missing."); return; } const { jsPDF } = window.jspdf; const pdf = new jsPDF('p', 'pt', 'a4'); const source = document.getElementById('pdf-content'); if (!source) return; pdf.html(source, { callback: (doc) => doc.save("Child-Custody-Agreement.pdf"), x: 40, y: 40, width: 515, windowWidth: source.scrollWidth }); }; // --- INITIALIZE UI --- updateUI(); });
Scroll to Top