I'm trying to do a form validation where we check if the input the user enters matches a regular expression, than the form should go through. For now I'm trying to validate the name field so that even if the users enters a minimum of 2-15 characters spaces can be included. Shouldn't it be /^\w\s{2,15}$/;
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bottles Form</title>
<link rel="stylesheet" type="text/css" href="./css/form.css">
<script type="text/javascript">
function validFirstName() {
var fName = document.getElementById("customerName").value;
var regex = /^\w{2,15}$/;
if (regex.test(fName)) {
document.getElementById("firstNameAlert").innerHTML = "<span class='valid'>Valid</span>";
return (true);
} else {
document.getElementById("firstNameAlert").innerHTML = "<span class='error'>Error. First Name must be within 2 to 15 characters</span>";
return (false);
}
}
function formCalculator() {
const SALESTAX = .0825;
var userName = document.getElementById("customerName").value;
var quantity = document.getElementById("quantityBottle").value;
var costBottle = document.getElementById("costBottle").value;
var totalBottle = quantity * costBottle;
var discount = 0;
var discountedTotal = 0;
var taxTotal = totalBottle * SALESTAX;
var orderTotal = totalBottle + taxTotal;
//var orderWithDiscount = discountedTotal + taxTotal;
if(parseInt(quantity) > 10 && parseInt(quantity) <= 19) {
discount = .10;
totalBottle = totalBottle - (totalBottle * discount);
}
orderTotal.value = "$" + orderTotal.toFixed(2);
document.getElementById("result").innerHTML = "Hello " + userName + " - Your order of " + quantity + " bottles, costs $" + orderTotal.toFixed(2) + ", plus tax.";
}
</script>
</head>
<body>
<h1>Bottles Form</h1>
<form action="" method="post" enctype="multipart/form-data" name="wigetCalc">
<input name="customerName" id="customerName" type="text" size="20" onblur="validFirstName();"/> - <span id="firstNameAlert">First Name</span><br />
<input name="quantityBottle" id="quantityBottle" type="text" value="0" size="20" maxlength="3" /> Bottle Order Quantity<br />
<input name="costBottle" id="costBottle" type="text" value="5.31" size="20" readonly="readonly" /> Bottle Cost<br />
<p class ="coloredBox" onclick="formCalculator();">Submit</span></p>
<div id="result"></div>
</form>
</body>
</html>