
Hi,
Today, i we will show you datepicker disable saturday sunday in bootstrap. This article will give you simple example of datepicker disable saturday sunday in bootstrap. you will learn datepicker disable saturday sunday in bootstrap. So let’s follow few step to create example of datepicker disable saturday sunday in bootstrap.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <! DOCTYPE html> < html > < head > < title >Datepicker Disable Saturday Sunday in Bootstrap - codeplaners.com</ title > < link rel = "stylesheet" type = "text/css" href = "https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.css" > < link rel = "stylesheet" type = "text/css" href = "https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.css" > < script type = "text/javascript" src = "https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.js" ></ script > </ head > < body > < div class = "container" > < h1 >Datepicker Disable Saturday Sunday in Bootstrap</ h1 > < input type = "text" name = "date" class = "form-control datepicker" autocomplete = "off" > </ div > </ body > < script type = "text/javascript" > $('.datepicker').datepicker({ daysOfWeekDisabled: [0,6] }); </ script > </ html > |