Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I validate the value of time using form validation engine? I'm using a timepicker (http://trentrichardson.com/examples/timepicker/) plugins to insert date and time in same field that gave a value of "2011-05-25 00:00:00" 00:00:00 is a default value if the user not tick on the slider.

time must not be in "00". Do i need to trim the value to validate it? I'm stuck with this. Please help.

share|improve this question

1 Answer

up vote 0 down vote accepted
jQuery.validator.addMethod('time', function(value, element) {

    return this.value.search(/00:00:00$/) != -1;

}, 'Please enter a valid time.');
share|improve this answer
Thanks Sir! I will try this. – mrrsb May 25 '11 at 3:35
Your awesome sir! I got the logic and try to convert it to jquery formValidation Engine link and got it!!! thank you very much sir! – mrrsb May 25 '11 at 4:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.