Check the Validation for floating point numbers in HTML



<html>
<head>
<title>Sample Code</title>
<script type="text/javascript">
function CheckFloatingPoint(ValueNumeric)
{
var objRegex = /(^-?\d\d*\.\d\d*$)|(^-?\.\d\d*$)/;

//check for numeric characters


if(objRegex.test(ValueNumeric))
{
alert("Your Given Input \""+ValueNumeric+"\" Is Correct.");
}
else
{
alert("Your Given Input\""+ValueNumeric+"\" Is Not Correct.");
}
}
</script>
</head>
<body bgcolor=#00ff00 alink=blue vlink=blue>
<FORM name="windowEvent">
Number : <input type="text" name="txtnumber" />
<input type="button" value="Check Floating Point" name="btnCheckFloatingPoint" onClick="CheckFloatingPoint(txtnumber.value)" />
</FORM>
</body>
</html>

Ebook Download
View all
Learn
View all