Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker</title>
- <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
- <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
- <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
- <script>
- $( function() {
- $( "#datepicker" ).datepicker();
- } );
- </script>
- </head>
- <body>
- <p>Date: <input type="text" id="datepicker"></p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment