![]() |
JQuery Datepicker
Hi all,
I'm a CF and JS newbie, so any help would be grateful. I'm looking for some help on excluding dates from the jQuery datepicker. The rules for excluding dates are a little complicated, at least to me. The datepicker is used for choosing an earliest collection date, but the collection date is depended on when you placed the order within business hours. So... It needs 48 hours minimum notice in general - easy to do with setting the minDate. But it gets complicated with orders placed before & after 12pm, and orders placed at weekend. The break down for earliest collection... Monday before 12pm = Wednesday / after 12pm = Thursday Tuesday before 12pm = Thursday / after 12pm = Friday Wednesday before 12pm = Friday / after 12pm = Saturday Thursday before 12pm = Saturday & Sunday / after 12pm = Monday Friday before 12pm = Monday / after 12pm = Tuesday Saturday & Sunday = Wednesday Im new to JS, but I have the following code Any help would be grateful. Martin Code:
var dt = new Date(); |
this is probably best handled with a switch - assuming that the code you have works ok for weekday orders, just give it special instructions for Saturday (6 in javascript) or Sunday (0)...
Code:
var dt = new Date();... and the trailing comma you had after minDate: time() is a very bad habit - maybe jQuery strips these out by default, but if you do that in plain javascript, IE will wet its pants because it expects something to come after the comma - commas should only go between things, for example if you were coding maxdate as well it would be:Code:
$("input[value*='EnterDate']").val('').datepicker({ |
Thanks Xelawho,
Its working fine. Ive got it in a JSfiddle and was trying to test each day by giving the dt variable a date value. Im not getting the adjustment in the picker. http://jsfiddle.net/MGMcG/ArMur/ Regarding the element ID. I'm trying to implement a datepicker in a hosted ecommerce platform. I cant get full access to the code, but by creating an input with a value of EnterDate, I was thinking of identifying by that value. Its not ideal, but it sort of works. Thanks for the tips also on my bad habits. I'll keep an eye on it. Again, any help would be grateful. |
Sorry, this was a double post
Thanks Martin |
Sorry this was a double post.
|
| All times are GMT +1. The time now is 06:57 AM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.