Hey there, I need help with showing tasks created on a specific date by selecting that date from a full month calendar.
https://i.sstatic.net/hbLtp.jpg
There are multiple tasks created on the selected date, and I want to trigger a jQuery event to fetch data for that date.
However, my issue is getting the selected date so I can pass it to my Node.js function.
Any suggestions on how I can retrieve the selected date?
I am currently using this calendar:
<link rel="stylesheet" type="text/css" href="pages/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css">
<script src="pages/bower_components/jquery/dist/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<div class="box box-primary">
<div class="box-body no-padding">
<!-- THE CALENDAR -->
<div id="calendar"></div>
</div>
</div>