I have an asp.net control textbox, clicking on which a jquery timepicker appears and user can select any time.But I want to validate the selected time so that it is one hour greater than the current time in the client side. I mean when textbox value will be changed it should be validated. Can anyone help me how to do this?

link|improve this question

67% accept rate
which jquery timepicker is this? – Reigel Sep 24 '10 at 7:09
jquery.timepickr – ANP Sep 24 '10 at 7:16
feedback

1 Answer

The input that the client's selection goes into will have an id. Do

$('#that_id').change(function() {
Validation Code/////
})
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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