The subnet calculator helps you design networks by taking an IP address and network mask and returning information such as network, broadcast address, and host range.
One of a set of tools we're offering as a way of saying thank you for being a part of the community.
if you give your submit button a name
<input type=submit name="Submit">
then change this code
if(errMsg>""){
alert("Please correct these errors:"+errMsg);
if(typeof(firstFrmValidate
firstFrmValidateFailedObj.
if(firstFrmValidateFailedO
firstFrmValidateFailedObj.
}
firstFrmValidateFailedObj.
}
return false;
}
to
if(errMsg>""){
alert("Please correct these errors:"+errMsg);
if(typeof(firstFrmValidate
firstFrmValidateFailedObj.
if(firstFrmValidateFailedO
firstFrmValidateFailedObj.
}
firstFrmValidateFailedObj.
}
return false;
} else {
document.getElementById("S
// the line below stops the submit but shows that the button is disabled (you have to remove this for the submit to complete
return false;
}
Basically if there is no error message then the validation has passed and the button is disabled
HTH
Scott