I'm trying to implement a date pick on my website, but i got a little problem: to make it appear, I have to click on the text field, click outside and then click inside again to show up. How do I fix that? Heres part of my code:
function datePicker(){
$( "#from" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
changeYear: true,
onClose: function( selectedDate ) {
$( "#to" ).datepicker( "option", "minDate", selectedDate );
$( "#to" ).datepicker( "option", "dateFormat", "dd/mm/yy" );
}
});
$( "#to" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
changeYear: true,
onClose: function( selectedDate ) {
$( "#from" ).datepicker( "option", "maxDate", selectedDate );
$( "#from" ).datepicker( "option", "dateFormat", "dd/mm/yy" );
}
});
}
<input type="text" class ="date" id= "from" name="from" onclick="datePicker();"/>
<BR>
<input type="text" class = "date" id= "to" name="to" onfocus="datePicker();"/>
I appreciate any help Thanks in advance :)
