12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
- <title>Pikaday - Container example</title>
- <meta name="author" content="Stuart McFarlane">
- <link rel="stylesheet" href="../css/pikaday.css">
- <link rel="stylesheet" href="../css/site.css">
- </head>
- <body>
- <a href="https://github.com/dbushell/Pikaday"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
- <h1>Pikaday - Container example</h1>
- <p class="large">A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS.</p>
- <div>
- <div class="flow-element">
- <label for="datepicker">Date:</label>
- <input type="text" id="datepicker">
- </div>
- <div class="flow-element">
- <div id="container"></div>
- </div>
- </div>
- <h2>What is this?</h2>
- <p>Since version 1.0 Pikaday is a stable and battle tested date-picker. Feel free to use it however you like but please report any bugs or feature requests to the <a href="https://github.com/dbushell/Pikaday/issues">GitHub issue tracker</a>, thanks!</p>
- <p class="small">Copyright © 2014 <a href="http://dbushell.com/">David Bushell</a> | BSD & MIT license | Example by <a href="https://github.com/rikkert">Ramiro Rikkert</a></p>
- <!-- First load pikaday.js and then the jQuery plugin -->
- <script src="../pikaday.js"></script>
- <script>
- var picker = new Pikaday(
- {
- field: document.getElementById('datepicker'),
- firstDay: 1,
- minDate: new Date(2000, 0, 1),
- maxDate: new Date(2020, 12, 31),
- yearRange: [2000, 2020],
- bound: false,
- container: document.getElementById('container'),
- });
- </script>
- </body>
- </html>
|