Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Goal:
I'm looking for a datepicker for a website.

Question:
I cannot select any datepicker because I'm using jquery-1.10.2.

Do you know any datepicker that use jquery-1.10.2.? It is only enough to retrieve the dates only.

Information:
*Unfortunatley, I cannot upgrade the jquery because the end users are using old web browser.
*I'm using ASP.net MVC and Bootstrap v1.6.3

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
288 views
Welcome To Ask or Share your Answers For Others

1 Answer

"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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...