In this tutorial, we will learn Jquery UI Datepicker Disable Specific Dates Example


Example :

<!DOCTYPE html>
<html>
<head>
    <title>Jquery UI Datepicker Disable Specific Dates Example</title>
    <link href="http://code.jquery.com/ui/1.9.2/themes/smoothness/jquery-ui.css" rel="stylesheet" />
    <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
    <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
    <style type="text/css">
        .container{
            border-radius: 5px;
            padding:50px 20px;
            margin:30px auto;
            width:25%;
            border:2px solid #000;
            text-align: center;
        }
        input{
            padding:5px;
        }
        h2{
            text-align: center;
        }
        body{
            background-color: #81eace;
        }
    </style>
</head>
<body>
    <h2>Jquery UI Datepicker Disable Specific Dates Example - rathorji.in</h2>
    <div class="container">
        <label>Date :</label>
        <input type='text' class='date'>
    </div>
</body>
<script type="text/javascript">
    var array = ["01-06-2020","02-06-2020","03-06-2020","15-06-2020"]
    $('input').datepicker({
        beforeShowDay: function(date){
            var string = jQuery.datepicker.formatDate('dd-mm-yy', date);
            return [ array.indexOf(string) == -1 ]
        }
    });
</script>
</html>


May this example help you..