Currently, I am working on developing my personal work website. One issue I have encountered is with the calendar feature. The "From" date can be selected before today's date, which is not ideal. Additionally, if a date 5 days from now is chosen as the "From" date, the "To" date still allows options for selecting dates before the "From" date.
It should ideally only allow me to select dates that come after the "From" date. Furthermore, I am struggling to implement a hover effect in the "End Date" field. For example, even if I hover over the 6th day from now, it should highlight both the 5th and 6th day.
JavaScript:
$(document).ready(function(){
$('#from').datepicker({
numberOfMonths:2
});
});