azmicolejr

Datepicker

May 25th, 2018
2,717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.51 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="utf-8">
  5.   <title>jQuery UI Datepicker</title>
  6.   <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  7.   <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  8.   <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  9.   <script>
  10.   $( function() {
  11.     $( "#datepicker" ).datepicker();
  12.   } );
  13.   </script>
  14. </head>
  15. <body>
  16.  
  17. <p>Date: <input type="text" id="datepicker"></p>
  18.  
  19.  
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment