keyboardNavigation : BooleanDefault: true

Whether to enable keyboard navigation.

Examples

Material Design

    
 <input id="datepicker" width="312" />
 <script>
    $('#datepicker').datepicker({
        keyboardNavigation: true
    });
 </script>

  

Material Design Modal

    
 <input id="datepicker" width="312" />
 <script>
    $('#datepicker').datepicker({ keyboardNavigation: true, modal: true, header: true, footer: true });
 </script>

  

Bootstrap 4

    
 <input id="datepicker" width="234" />
 <script>
    $('#datepicker').datepicker({
        uiLibrary: 'bootstrap4',
        keyboardNavigation: true,
        showOtherMonths: true
    });
 </script>

  

Bootstrap 5

    
 <input id="datepicker" width="234" />
 <script>
    $('#datepicker').datepicker({
        uiLibrary: 'bootstrap5',
        keyboardNavigation: true,
        showOtherMonths: true
    });
 </script>