Rental Agreement Fee Estimator
Estimate potential stamp duty and registration fees for a residential lease agreement. Rates are illustrative and vary by jurisdiction.
$
$
months
Fee Estimation
$0
Estimated Stamp Duty / Tax
$0
Estimated Registration Fee
Total Estimated Fees
$0
Rental Fee Estimate
Lease Details
Estimated Fees
Total Estimated Fee: ${formatCurrency(calculationCache.totalFee)}
`; pdfContentEl.style.display = 'block'; const { jsPDF } = window.jspdf; html2canvas(pdfContentEl, { scale: 2 }).then(canvas => { const imgData = canvas.toDataURL('image/png'); const pdf = new jsPDF({ orientation: 'p', unit: 'mm', format: 'a4' }); const pdfWidth = pdf.internal.pageSize.getWidth(); const imgProps = pdf.getImageProperties(imgData); const imgHeight = (imgProps.height * (pdfWidth - 20)) / imgProps.width; pdf.addImage(imgData, 'PNG', 10, 10, pdfWidth - 20, imgHeight); pdf.save('Rental-Fee-Estimate.pdf'); pdfContentEl.style.display = 'none'; }); }); // --- Initialize the tool --- populateStates(); });