Forum Discussion
JeniJohnson-19a
6 years agoCommunity Member
Minimum number of characters required
For text entry, is there a way (maybe with Javascript) to make a user enter a minimum number of characters before they can move on? To prevent them from typing in one character just to click next. ...
rajakrishna
Community Member
For Text Area: $('textarea').attr("maxlength",10)
For Input: $('input').attr("maxlength",10)
EmmabelAgustin
4 years agoCommunity Member
Hello, how can I apply this? I've been trying this code by Execute Javascript trigger when timeline starts, but it's not working.