Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.
document.addEventListener("DOMContentLoaded", function () {
document.getElementById("calculate-button").addEventListener("click", function () {
const squareFootage = document.getElementById("square-footage").value;
if (Number(squareFootage) < 750) {
document.getElementById("estimate-result").textContent =
"The minimum square footage is 750. Please enter a larger value.";
return;
}
let pricePerSqFt = 0.50; // Default price for 2000+ sqr feet
if (Number(squareFootage) < 1000) {
pricePerSqFt = 0.75;
} else if (Number(squareFootage) < 2000) {
pricePerSqFt = 0.60;
}
if (Number(squareFootage) > 0) {
const estimate = squareFootage * pricePerSqFt;
document.getElementById("estimate-result").textContent =
"Estimated Price: $" + estimate.toFixed(2);
} else {
document.getElementById("estimate-result").textContent =
"Please enter a valid square footage.";
}
});
});
One response to “Hello world!”
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.