Set the defaultDate option: http://jqueryui.com/demos/datepicker/#option-defaultDate
jQuery(function ($) {
var day = new Date(),
year = ((day.getMonth() - 2) < 0) ? (day.getFullYear() - 1) : day.getFullYear(),
month = ((day.getMonth() - 2) < 0) ? (12 + (day.getMonth() - 2)) : (day.getMonth() + 1),
date = day.getDate() + '-' + month + '-' + year;
$('#datepicker').datepicker({
dateFormat : 'dd-mm-yy',
defaultDate : '-2m'
}).val(date);
});
Here is a demo: http://jsbin.com/ezuxen/edit#javascript,html,live
Here is a quick run-down of some of the changes I made to your code:
- I passed in
$ to the document.ready event handler so it can be used inside the event handler.
- The date now sets itself to two months ago with some conditional statements that check if two months ago was a different year.
- I chained the calls to the
$('#datepicker') jQuery object so it didn't have to be selected more than once.
- I also comma separated your variable declarations rather than re-using the
var statement back-to-back-to-back-to...
Note that if the current date is the 31st and two months ago does not have 31 days this will probably create an issue for this code. August is the only month that has 31 days and two months prior does not (June has 30 days).