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

Question

Question

Set field length of Other option in radio button

asked on May 8, 2017

I am looking for a way to set the field/character length of the 'Other' option in a radio/checkbox field.  

Thanks,

Nate

1 0

Replies

replied on May 8, 2017

Give the group a class name, then call it like this in the JavaScript section:

$( document ).ready(function() {

  $(document).ready(function() {
     $('.yourClassName input').attr({ maxLength : 15 });
  });

});

 

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

Sign in to reply to this post.