Himas Rafeek
Posted on: 3 years ago
CSS

Prevent users submitting contact form if less than 2 words are entered (JavaScript)

Prevent users submitting contact form if less than 2 words are entered (JavaScript)


                                          $('#question_submit').click(function (e) {
    e.preventDefault();
         if ($('#question_name').val().toString().split(' ').length > 2) {
        $('#new_question').submit();
    }
}
);