Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

/* jQuery ready function.

Specify a function to execute when the DOM is fully l


oaded. */
$(document).ready(

/* This is the function that will get executed after the DOM is fully loaded *
/
function () {
$( "#datepicker" ).datepicker({
changeMonth: true,//this option for allowing user to select month
changeYear: true //this option for allowing user to select from year range
});
}
);

You might also like