Home Address validation using 3rd party integartions before submiting the request eg it's should be valid address 1, address 2, city, state, zip code etc.
Home addess validations fron 3rd party free tool
Working Code Answered question June 29, 2023
Zip Code Validation, please write onChange client script for zip code validation
function onChange(control, oldValue, newValue, isLoading, isTemplate) { if (isLoading || newValue === '') { return; } if (!/^\d{5}(?:-\d{4})?$/.test(newValue)) { g_form.showFieldMsg('u_zip_code', 'Please enter a valid zip code', 'error'); return false; } g_form.hideFieldMsg('u_zip_code', true); return true; }
Home addess validations fron 3rd party free tool
Working Code Answered question June 29, 2023