New Post: Help adding custom validators to the jquery.validator-0.3.4.min.js
Hi mcm,Thank you very much for your help, it seems alot more clearer to me now....i have one more question if thats ok, i have comma's in my interger so i need to strip those out before the...
View ArticleNew Post: Help adding custom validators to the jquery.validator-0.3.4.min.js
My fault, I made customFn to be consistent with other javascript events like onclick where "this" refers to the input element the attribute is defined on (so indeed "this.value" should be the value...
View ArticleNew Post: Help validating email
Hello,This is a very easy to use with a good appeal.How ever, I was playing around with the demo and i notice that if I entered my email as follows: ajmakoni@live,com instead of (dot), the validator...
View ArticleNew Post: Help validating email
Thanks for the feedback, the validation for the email is done using a regular expression from this page: http://www.regular-expressions.info/email.html. I went with the safer option by using the one...
View ArticleNew Post: Multiple Forms for validation
Hello, I have multiple forms and using the validator to validate the form. If I validate one form, it goes on validating other forms as well, which I dont want. Could you help me in this case?...
View ArticleNew Post: Multiple Forms for validation
Sure the idea is that you give the validate attribute a unique name to group the fields you do want validated together like below:<div><inputtype="text"validate="form1"require="Please enter...
View ArticleNew Post: Multiple Forms for validation
Thanks, that worked perfectly!!!Also, thanks for sharing this awesome validator
View ArticleNew Post: Validation for string length
Does something like this help?<table><tr><td>New Password:</td><td><input id="newpassword" type="password" validate="customValidatorGroupName" customFn="this.length...
View ArticleNew Post: Validation for string length
Hi mcm_ham Thank you for your kindness it solve my problem.. this is great code for client side validation. Thanks Moises B. Bas From: [email removed] To: [email removed] Date: Mon, 8 Oct 2012 01:06:13...
View ArticleNew Post: Help adding custom validators to the jquery.validator-0.3.4.min.js
Good DayPls how can i create a custom validators for mobile "((\+63)|0)[.\- ]?9[0-9]{2}[.\- ]?[0-9]{3}[.\- ]?[0-9]{4}".., ThanksMoises Bas
View ArticleNew Post: Help adding custom validators to the jquery.validator-0.3.4.min.js
There are two ways you can do this, either use the regular expression validator:<inputtype="text"validate="group"regular="Invalid mobile, please check for typos."validExpress="((\+63)|0)[.\-...
View ArticleNew Post: How to validate (require) TEXTAREA ?
I tried this:<textarea name="my_txt" id="my_txt" cols="100" rows="5" validate="group" require="hep!"></textarea>and this other method:<div validate="group"...
View ArticleNew Post: How to validate (require) TEXTAREA ?
What you have looks correct, are you calling the validate method somewhere to trigger the validation?...
View ArticleNew Post: How to validate (require) TEXTAREA ?
Thx for answer. It works now without any change... so strange :-/
View ArticleNew Post: Highlight textbox
how can i select textbox text when error encountered... thanks
View ArticleNew Post: Highlight textbox
You should be able select the text as normal, what's happening? Are you getting the same problem with the example.html file in the download?
View ArticleNew Post: How to apply validation on Two Buttons
Consider Case I have 3 Textboxes and 2 Buttons Approve and Reject resp. For Approve Button I have to check only 2Textboxes for RequireFiled bt for Reject I have to check 3Textboxes for...
View ArticleNew Post: How to apply validation on Two Buttons
Well you can have different validation groups on a page, e.g:<input type="text" validate="group1" require="Please enter value" /> <input type="text" validate="group2" require="Please enter...
View ArticleNew Post: How to validate Checkbox list
Does anyone have a fix for checkboxes. I have the following additional validator which only shows me a highlight around the checkbox list without the alertbox. cblRequire: function () { return...
View Article