Stop submit button being pressed until enough words are written in text area

后端 未结 6 2319
感动是毒
感动是毒 2021-01-25 17:24

So basically what I want is for the submit button to be disabled until a certain word count has been reached in the text area.

I have had a look around and tried to find

6条回答
  •  野性不改
    2021-01-25 18:06

    see this example at http://elylucas.net/post/Enabling-a-submit-button-when-a-textbox-has-value-in-jQuery.aspx

    instead of checking for a value, you split the input string in the text box and see the length of the array is more than your desired word count

提交回复
热议问题