Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <title></title>
  4. <link href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css" rel="Stylesheet"
  5. type="text/css" />
  6. <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
  7. <script type="text/javascript" src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  8. <script language="javascript">
  9. $(document).ready(function () {
  10. $("#txtdate").datepicker({
  11. minDate: 0
  12. });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. Date :
  18. <input id="txtdate" type="text">
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement