Department of Computer Engineering: Develop A Webpage For Validation of Form Fields Using Regular Expressions
Department of Computer Engineering: Develop A Webpage For Validation of Form Fields Using Regular Expressions
COMPUTER ENGINEERING
Experiment No: 12
Title of Experiment Develop a webpage for validation of form fields using regular
expressions.
Theory:
<html>
<head>
<script>
function validateForm() {
var x = document.forms["myForm"]["fname"].value;
if (x == "")
{
alert("Name must be filled out");
return false;
}
}
</script>
</head>
<body>
Page | 1
Constraint Validation DOM Methods
Property Description
<html>
<body>
<p>Enter a number and click OK:</p>
<input id="id1" type="number" min="100" max="300" required>
<button onclick="myFunction()">OK</button>
<p>If the number is less than 100 or greater than 300, an error message will be displayed.</p>
<p id="demo"></p>
<script>
function myFunction()
{
var inpObj = document.getElementById("id1");
if (!inpObj.checkValidity())
{
document.getElementById("demo").innerHTML = inpObj.validationMessage;
}
Page | 2
else
{
document.getElementById("demo").innerHTML = "Input OK";
}
}
</script>
</body>
</html>
Output:
Page | 3