Answered
Removing certain string characters from field entry
Is there a script to remove characters from a field entry if one is entered, like a comma?
Thanks.
Is there a script to remove characters from a field entry if one is entered, like a comma?
Thanks.
Sure. You can use this script as a custom validation script to do that:
event.value = event.value.replace(/,/g, "");
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.