this is a homework assignment in which I am supposed to write the JavaScript function (calculate) to calculate and display sales tax and total upon hitting the calculate button.
This was provided for me:
salesTax = subtotal * taxRate/100;
total = subtotal salesTax;
and
Must be a positive number less than 10000000
Must be a positive number less than 50
Here is my code, can you tell me why it is not functioning? I am a novice obviously:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sales Tax Calculator</title>
<link rel="stylesheet" href="style.css" />
<script>
//function declaration for calculating sales tax
function calculate() {
//get three inputs from input boxes in the form
let subtotal = parseInt(document.getElementById("subtotal").value);
let taxRate = parseFloat(document.getElementById("tax_rate").value);
//validation data
if (subtotal <= 10000000 || tax_rate <= 50) {
alert("sales tax exceeds 10000000 and/ or tax rate exceeds 50");
} else {
//calculate sales tax
salesTax = subtotal * taxRate / 100;
total = subtotal salesTax;
//display the results to the last two boxes
document.getElementById("sales_tax").value = salesTax;
document.getElementById("total").value = total;
}
}
//function calling part
//function named clear_form to clear every data entry in the clear_form
//create function
function clear_form() {
document.getElementById("subtotal").value = " ";
document.getElementById("tax_rate").value = " ";
document.getElementById("sales_tax").value = " ";
document.getElementById("total").value = " ";
/*document.getElementById("investment").focus();*/
}
//function calling part using window.onload
window.onload = function() {
document.getElementById("calculate").onclick = calculate
document.getElementById("clear").onclick = clear_form
}
</script>
</head>
<body>
<div id="content">
<h1>Sales Tax Calculator</h1>
<p>Enter Subtotal and Tax Rate and click "Calculate".</p>
<div id="taxCalc">
<label for="subtotal">Subtotal:</label>
<input type="text" id="subtotal">
<span id="subtotal_message">Enter Order Subtotal</span><br />
<label for="tax_rate">Tax Rate:</label>
<input type="text" id="tax_rate">
<span id="tax_rate_message">Enter Sales Tax Rate </span><br />
<label for="sales_tax">Sales Tax:</label>
<input type="text" id="sales_tax" disabled><br />
<label for="total">Total:</label>
<input type="text" id="total" disabled><br />
<label> </label>
<input type="button" id="calculate" value="Calculate">
<input type="button" id="clear" value="Clear"><br />
</div>
</div>
</body>
</html>
CodePudding user response:
I have run your code, and have run into one problem that has stopped it from running:
//validation data
if (subtotal <= 10000000 || tax_rate <= 50) {
alert("sales tax exceeds 10000000 and/ or tax rate exceeds 50");
You have accidentaly mixed around your greater than and less than signs!
It should be:
//validation data
if (subtotal >= 10000000 || tax_rate >= 50) {
alert("sales tax exceeds 10000000 and/ or tax rate exceeds 50");
Try this and see if it works.
CodePudding user response:
You're checking wrong conditions -
if (subtotal <= 10000000 || tax_rate <= 50)
It should be the following condition -
if (subtotal >= 10000000 || tax_rate >= 50)