skip to Main Content

Disable and enable gijgo datepicker – Jquery

I am using datepicker from gijgo 1.9.14. I would like to know how to disable and enable it from javascript $("#startDate").datepicker( { calendarWeeks: true, uiLibrary: 'bootstrap4', locale: 'pt-br', value : '<?=date('d/m/Y')?>', format:'dd/mm/yyyy', iconsLibrary: 'fontawesome', } ); When I try $("#startDate").prop('disabled',true)…

VIEW QUESTION

Identify weekend dates within range of date – Jquery

I am trying to compute number of days between a range of dates input by the user using date picker using the following script: $(document).ready(function () { $('#datepicker1').datepicker(); $('#datepicker2').datepicker(); $('#datepicker3').datepicker(); $('#datepicker4').datepicker(); $(function() { let $fromDate = $('#fromdate'), $toDate = $('#todate'),…

VIEW QUESTION
Back To Top
Search