Njchildsupport Calculator

.nj-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; color: #333; } .nj-calc-header { text-align: center; margin-bottom: 25px; } .nj-calc-header h2 { color: #2c3e50; margin-bottom: 10px; } .nj-input-group { margin-bottom: 15px; } .nj-input-group label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 14px; } .nj-input-group input, .nj-input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } .nj-calc-btn { width: 100%; padding: 15px; background-color: #27ae60; color: white; border: none; border-radius: 4px; font-size: 16px; font-weight: bold; cursor: pointer; transition: background 0.3s; } .nj-calc-btn:hover { background-color: #219150; } .nj-results { margin-top: 25px; padding: 20px; background-color: #fff; border: 2px solid #27ae60; border-radius: 4px; display: none; } .nj-results h3 { margin-top: 0; color: #27ae60; } .nj-result-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; } .nj-result-row:last-child { border-bottom: none; } .nj-article { margin-top: 40px; line-height: 1.6; color: #444; } .nj-article h2 { color: #2c3e50; border-left: 5px solid #27ae60; padding-left: 15px; } .nj-article h3 { color: #34495e; } .nj-example { background: #e8f4fd; padding: 15px; border-radius: 5px; margin: 15px 0; }

New Jersey Child Support Calculator

Estimate weekly support obligations based on the NJ Income Shares Model

1 Child 2 Children 3 Children 4 Children 5 Children 6 Children

Estimated Weekly Obligation

Combined Family Income:
Basic Child Support Amount:
Total Adjusted Obligation:
Non-Custodial Parent Pays:

Understanding the New Jersey Child Support Guidelines

New Jersey follows the Income Shares Model for calculating child support. This model is based on the principle that children should receive the same proportion of parental income that they would have received if the parents lived together. The state uses specific guidelines (Appendix IX-F) to determine the basic obligation based on the combined net weekly income of both parents.

How the NJ Support Formula Works

The calculation process involves several critical steps to ensure fairness and adequate support for the child:

  • Determination of Net Income: Both parents must calculate their weekly net income, which is gross income minus mandatory taxes, union dues, and prior child support orders.
  • Combined Income Analysis: The incomes are added together to find the "Basic Child Support Amount" from the New Jersey schedule.
  • Proportional Responsibility: Each parent is responsible for a percentage of the total support equal to their percentage of the combined income.
  • Add-ons: Work-related childcare and health insurance costs for the child are added to the basic support amount before the final split is calculated.

Example Calculation (Realistic Scenario)

Parent A (Custodial): $800/week net
Parent B (Non-custodial): $1,200/week net
Number of Children: 1
Combined Income: $2,000/week
Childcare: $100/week

In this scenario, Parent B earns 60% of the total income. If the basic support for $2,000 is approximately $300, and we add $100 for childcare, the total is $400. Parent B would be responsible for 60% of $400, resulting in a $240 weekly payment.

Sole vs. Shared Parenting Time

The calculation differs significantly depending on the parenting schedule. A Sole Parenting worksheet is used when the non-custodial parent has the child for less than 28% of overnights (104 overnights per year). If the non-custodial parent has the child for more than 104 overnights, a Shared Parenting worksheet is used, which typically reduces the support amount to account for the costs incurred while the child is with the other parent.

Modifying a Child Support Order in NJ

Under New Jersey law, child support orders can be modified if there is a "substantial change in circumstances." This might include a significant increase or decrease in income, a change in the child's medical needs, or a shift in the parenting time schedule. It is recommended to review support orders every three years.

function calculateNJSupport() { var children = parseInt(document.getElementById("nj_num_children").value); var incomeA = parseFloat(document.getElementById("nj_custodial_income").value) || 0; var incomeB = parseFloat(document.getElementById("nj_non_custodial_income").value) || 0; var childcare = parseFloat(document.getElementById("nj_childcare").value) || 0; var health = parseFloat(document.getElementById("nj_health").value) || 0; var totalNetIncome = incomeA + incomeB; if (totalNetIncome 1500) basicRate *= 0.9; if (totalNetIncome > 3000) basicRate *= 0.85; var basicSupport = totalNetIncome * basicRate; var totalObligation = basicSupport + childcare + health; var nonCustodialShare = totalObligation * percentageB; // Update UI document.getElementById("res_total_income").innerText = "$" + totalNetIncome.toFixed(2); document.getElementById("res_basic_support").innerText = "$" + basicSupport.toFixed(2); document.getElementById("res_adjusted_total").innerText = "$" + totalObligation.toFixed(2); document.getElementById("res_final_payment").innerText = "$" + nonCustodialShare.toFixed(2); document.getElementById("nj_results_box").style.display = "block"; // Smooth scroll to results document.getElementById("nj_results_box").scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment