I just have a quick question, im wondering if someone could help me.
I have the following script that someone has written which returns an error if there are no characters in the text field.
I want to modify the script so that it returns an error if there are less than 4 characters, but im not quite sure how.
Current script is as follows:
if(!isString($.trim(iUsername.val()))){ //If username is not correct
iUsername.siblings('.error').text('You must enter a username.');
error = true;
}
I just have a quick question, im wondering if someone could help me.
I have the following script that someone has written which returns an error if there are no characters in the text field.
I want to modify the script so that it returns an error if there are less than 4 characters, but im not quite sure how.
Current script is as follows:
if(!isString($.trim(iUsername.val()))){ //If username is not correct
iUsername.siblings('.error').text('You must enter a username.');
error = true;
}
Share
Improve this question
edited Oct 22, 2011 at 3:55
tekknolagi
11k26 gold badges79 silver badges126 bronze badges
asked Oct 22, 2011 at 3:48
BigJobbiesBigJobbies
4,35312 gold badges46 silver badges51 bronze badges
2
- your title and your post body are contradicting; "larger" vs "less" – tekknolagi Commented Oct 22, 2011 at 3:55
- @BigJobbies see jsfiddle/VvD4s – Ray Toal Commented Oct 22, 2011 at 4:13
1 Answer
Reset to default 9if ($(textId).val().length < 4) { err; }
right? :)