Sha256: 76c09639650ad326c4c1c73a9ebf7e2a4ab4199a9fb049c8a9087311e4975e84

Contents?: true

Size: 1.35 KB

Versions: 9

Compression:

Stored size: 1.35 KB

Contents

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
    <title>Pikaday</title>
    <meta name="author" content="David Bushell">
    <link rel="stylesheet" href="css/pikaday.css">
    <link rel="stylesheet" href="css/site.css">
</head>
<body>
    <h1>Pikaday</h1>

    <p class="large">A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS.</p>

    <p><a href="https://github.com/dbushell/Pikaday"><strong>Pikaday source on GitHub</strong></a></p>

    <label for="datepicker">Date:</label>
    <br>
    <input type="text" id="datepicker">

    <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 &amp; MIT license</p>


    <script src="pikaday.js"></script>
    <script>

    var picker = new Pikaday(
    {
        field: document.getElementById('datepicker'),
        firstDay: 1,
        minDate: new Date('2000-01-01'),
        maxDate: new Date('2020-12-31'),
        yearRange: [2000,2020]
    });

    </script>
</body>
</html>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
kea-rails-2.0.0.pre.alpha14 vendor/assets/components/pikaday/index.html
kea-rails-2.0.0.pre.alpha13 vendor/assets/components/pikaday/index.html
kea-rails-2.0.0.pre.alpha12 vendor/assets/components/pikaday/index.html
kea-rails-2.0.0.pre.alpha11 vendor/assets/components/pikaday/index.html
kea-rails-2.0.0.pre.alpha10 vendor/assets/components/pikaday/index.html
kea-rails-2.0.0.pre.alpha9 vendor/assets/components/pikaday/index.html
kea-rails-2.0.0.pre.alpha8 vendor/assets/components/pikaday/index.html
kea-rails-2.0.0.pre.alpha7 vendor/assets/components/pikaday/index.html
kea-rails-2.0.0.pre.alpha6 vendor/assets/components/pikaday/index.html