A simple calendar and date picker base on jquery
See this page.
- include jQuery
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>- add js & css
<script type="text/javascript" src="js/calendar.js"></script>
<link rel="stylesheet" href="css/style.css" />two way invoke calendar
- use default class, just set your class to
jquery-calendar
<div class="jquery-calendar"></div>- call the plugin, with js
$.calendar().
$('#element').calendar();
/* one with default date */
$('#element2').calendar({'date': new Date()});Here we use the date format as YYYY-MM-DD. You can add a default date as value:
<input class="date-picker" type="text" value="2013-8-1" />Also, two way to use it.
- use default class:
date-picker
<input class="date-picker" type="text" />- invoke with js
$.datePicker()
<script>
$(window).load(function() {
$(".your-picker").datePicker();
}
</script>
<input class="your-picker" type="text" />