Skip to content

c9s/jquery.dateselect.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

DateSelect

Define a div with id and default value:

<div id="start_date"><?= date('Y-m-d'); ?></div>

Init dateselect:

$(function() {
    $('#start_date').dateselect();
});

Or more...

$(function() {
    $('#start_date').dateselect({
        valueField: $('#start_date_value'),
        dateFormat: 'yy-mm-dd',
        change: function() {
            // do something
        }
    });
});

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published