[Solved] Available Datepicker for jQuery v 1.10.2


“I cannot select any datepicker because I’m using jquery-1.10.2”, Unfortunately thats not right.
It definitely works! Please follow the below snippet.

  $(document).ready(function(){
    $("#foo").datepicker();
});
 <!-- Load jQuery UI CSS  -->
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<!-- Load jQuery JS -->
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <!-- Load jQuery UI Main JS  -->
    <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.min.js"></script>

<body>
  <input type="text" id="foo" />
  
  </body>

9

solved Available Datepicker for jQuery v 1.10.2