UNPKG

mortgage-calculator-package

Version:

A simple, embeddable mortgage calculator that dynamically generates an interactive and styled calculator widget. It allows users to input mortgage amount, interest rate, amortization period, and payment frequency, and calculates the monthly payment based

9 lines 692 B
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Mortgage Calculator Test</title><script defer="defer" src="index.js"></script><link href="styles.css" rel="stylesheet"></head><body><div id="mortgage-calculator-container"></div><script>window.addEventListener('DOMContentLoaded', () => { MortgageCalculator.init({ containerId: "mortgage-calculator-container", product: "cockpit", // options: { // applyUrl: 'https://staging.kreateable.com/template-canvas', // }, }); });</script></body></html>