You are viewing limited content. For full access, please sign in.

Question

Question

Restrict Postal in address Field

asked on September 8, 2020

How to restrict Postal in address Field to have only 9 digits in Forms?

0 0

Replies

replied on September 9, 2020

Give the address a CSS Class called addressField (as in the below screenshot):

Then use the following JavaScript:

$( document ).ready(function() {
	$( ".addressField .Postal" ).attr("maxLength","9");
});

 

2 0
replied on September 9, 2020

Thanks

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.