CRM JavaScripts Form Validations
Here is some ready made JS function that we can use in our web pages or form. Validate a Mandatory Field [code language=”css”] function CheckRequiredFields() { if (document.getElementById("txtMobile").value== "") { alert("Value is Required !"); return false; } } [/code] Allow Only Numeric Values [code language=”css”] function IsNumericKey(e) { var inputvalue = window.event.keyCode; if (inputvalue >…
Read more