Hi
The datepicker does not work anymore after updating to Joomla 3.4.
Compare the form on J 3.3. http://www.travelcostarica.nu/rentalcar-reservation (working) with the J 3.4.form on http://gaggi.travelcostarica.nu/rentalcar-reservation (not working)
I have not made any changes and am loading the datpicker by "Loading JavaScript" in the Setup, using the code below:
Any idea what needs to be updated here in order for the datepicker to work?
Thanks for your thoughts!
The datepicker does not work anymore after updating to Joomla 3.4.
Compare the form on J 3.3. http://www.travelcostarica.nu/rentalcar-reservation (working) with the J 3.4.form on http://gaggi.travelcostarica.nu/rentalcar-reservation (not working)
I have not made any changes and am loading the datpicker by "Loading JavaScript" in the Setup, using the code below:
$(function() {
$( "#from" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#to" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#to" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#from" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
Any idea what needs to be updated here in order for the datepicker to work?
Thanks for your thoughts!