footer : BooleanDefault: true

If set to true, add footer with ok and cancel buttons to the timepicker.

Examples

True

    
 <input id="timepicker" width="280" />
 <script>
    $('#timepicker').timepicker({ footer: true });
 </script>

  

False

    
 <input id="timepicker" width="280" />
 <script>
    $('#timepicker').timepicker({ footer: false });
 </script>