Skip to main content

Posts

Showing posts with the label bootstrap datetimepicker disable saturday sunday

Bootstrap Datetimepicker Disable Weekends Example

Bootstrap Datetimepicker Disable Weekends Example Hi Dev, Today,i will learn you simple example of Bootstrap datetimepicker disable weekends.you can disable bootstrap datetimepicker using daysOfWeekDisabled method.we are disabled bootstrap datetimepicker in weekends.it will useing daysOfWeekDisabled options to disable weekends in bootstrap datetimepicker. Here following example of bootstrap datetimepicker disable weekends. Solution $(function () { $('#datetimepicker1').datetimepicker({ daysOfWeekDisabled: [0,6] }); }); Example <!DOCTYPE html> <html> <head> <title>Bootstrap Datetimepicker Disable Weekends Example</title> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script> <script src="https://maxcdn.bootstrap