How can I validate if time selected is correct if user is given a list of times frames to select from, I would like to validate the selected time frame with the following criteria:
1) not in the past (in other words not before now)
2) selected time must be at least 30 minutes greater than current time
Here is the HTML snippet from my form:
<select id="callBackTime" tabindex="9" name="callBackTime">
<option value="8:00 AM - 8:30 AM">8:00 AM - 8:30 AM</option>
<option value="8:30 AM - 9:00 AM">8:30 AM - 9:00 AM</option>
<option value="9:00 AM - 9:30 AM">9:00 AM - 9:30 AM</option>
<option value="9:30 AM - 10:00 AM">9:30 AM - 10:00 AM</option>
<option value="10:00 AM - 10:30 AM">10:00 AM - 10:30 AM</option>
</select>
I am using jQuery.validator.addMethod() to add my own rule and this is what I have so far:
Here is my JQuery Custom rule Validation so far:
$.validator.addMethod (
"timeToCall",
function(value, element) {
var timeSelected = $('#callBackTime').val();
var today = new Date();
var currentTime = today.getHours() + ':' + today.getMinutes();
return Date.parse(timeSelected) > Date.parse(currentTime);
},
"*Please select a later time."
);
Here is the code to trigger the validation:
$('#submit').click(function(e) {
$("#supportCallBackForm").validate({
rules: {
callBackTime: { timeToCall : true }
},
submitHandler: function(form) {
// do other things for a valid form
submitCallBackSupportRequest();
return false;
}
});
});
I think my custom .validator method is where I need most help. I don't know how to correctly compare what the user selects and the current time, in addition the selected time has to be at least greater than 30 minutes from NOW. Any help greatly appreciated.
I would suggest a few changes. First if you can make your select as follows
notice, of course, the two digits for the single digit hours
It will make it much easier to parse.
In your validator you could do like this
I have not actually run this code so I would definitely check the substrings that result, whether you have to parse the strings before you multiply them and whether * gets executed before the the +
I kind of suck at those things.
good luck and let me know if you need more.