I'm using the date range with jquerydate picker.

<script>
            jQuery(document).ready(function(){
                // binds form submission and fields to the validation engine
                jQuery("form").validationEngine();

    $('.datepicker').datepicker({
     changeMonth: true,
     changeYear: true,
     yearRange: '-14:-75'
    });

            });
</script>

The problem is then that the drop down box starts at 1936, where as I would like it to start at the other end of the scale. Can anyone help

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can use the defaultDate option: http://jqueryui.com/demos/datepicker/#option-defaultDate

jQuery(document).ready(function() {
    // binds form submission and fields to the validation engine
    // jQuery("form").validationEngine();
    var myDate = new Date("March 21, 1997");

    $('.datepicker').datepicker({
        changeMonth: true,
        changeYear: true,
        yearRange: '-14:-75',
        defaultDate: myDate
    });

});

See on this jsfiddle

link|improve this answer
feedback

This has already been discussed here. Maybe the solutions suggested in the thread below (even if not the best in my opinion) will work for you too.

JQuery UI Datepicker, reverse the order of the year in the dropdowns

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.