I am currently using jquery easy ui date picker. Here is the documentation, with few option only, so it won’t take you more than a minute to have a look. it is good but i need to select the date for a range start by tomorrow and within 30 days
for example, if today is 16/4/2012, then the range should be 17/4/2012 to 16/5/2012 , i find quite difficult to start with as i do not know how to get the current date using jquery and set the range, disable the selectable item after i read that document.
Thank you.
Also, if the jquery easyui is not a good choice for this, any recommendation? i am using jquery ui as well. It is appreciate if answer using either one of them
With jQuery UI you can use the
minDateandmaxDatesyntax.+1and+30will be tomorrow and the date within 30 days, respectively.Set the
optionsaccordingly.You can check a working example here.