PayPal calculator
PayPal Calculator
Enter the amount you want to receive:
PayPal fee:
You will receive:
margin: 20px auto; padding: 20px; background-color: #fff; border: 1px solid #ddd; border-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.1); } input[type="number"] { display: block; width: 100%; padding: 10px; margin-bottom: 10px; font-size: 16px; border: 1px solid #ccc; border-radius: 3px; box-sizing: border-box; } p { margin: 10px 0; font-size: 16px; } .output { font-size: 24px; font-weight: bold; color: #0070ba; } function calculate() { var amount = parseFloat(document.getElementById("amount").value.replace(/,/g, "")); if (isNaN(amount) || amount <= 0) { document.getElementById("fee").innerHTML = ""; document.getElementById("total").innerHTML = ""; return; } var fee = amount * 0.029 + 0.30; var total = amount - fee; document.getElementById("fee").innerHTML = formatCurrency(fee); document.getElementById("total").innerHTML = formatCurrency(total); } function formatCurrency(amount) { return "$" + amount.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'); } document.getElementById("amount").addEventListener("input", calculate);
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home