jquerytwitter-bootstrapdatepickermindate

bootstrap jquery minDate not working


I want to disable all dates before today in a bootstrap datepicker. I have digged the internet and everyone has this solution but why is it not working in my code?

<input type="text" id="date"/>
$(window).load(function(){
   $('#date').datepicker({
        minDate:0
   });
});

Solution

  • <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title></title>
    <link href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css" rel="Stylesheet"
        type="text/css" />
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
    <script type="text/javascript" src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
    <script language="javascript">
        $(document).ready(function () {
            $("#txtdate").datepicker({
                minDate: 0
            });
        });
    </script>
    </head>
    <body>
    Date :
    <input id="txtdate" type="text">
    </body>
    </html>