https://github.com/ikelin/bootstrap-datepicker
The jQuery UI Datepicker widget with Twitter Bootstrap theme
https://github.com/ikelin/bootstrap-datepicker
Last synced: about 1 month ago
JSON representation
The jQuery UI Datepicker widget with Twitter Bootstrap theme
- Host: GitHub
- URL: https://github.com/ikelin/bootstrap-datepicker
- Owner: ikelin
- Created: 2012-10-30T06:53:22.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-21T03:50:18.000Z (about 12 years ago)
- Last Synced: 2025-04-10T13:09:22.347Z (about 2 months ago)
- Language: JavaScript
- Size: 167 KB
- Stars: 25
- Watchers: 6
- Forks: 66
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bootstrap Datepicker v1.0 #
A jQuery UI Datepicker widget with Twitter Bootstrap theme. It's based on jQuery UI 1.9.1 and Twitter Bootstrap 2.1.1.
See demo page for more examples.
## Usage ##
$(document).ready(function() {
$(".datepicker").datepicker();
});
Using fancy bootstrap input/button combo:
Date
$(document).ready(function() {
$("#datepicker").datepicker();
$("#datepickerbtn").click(function(event) {
event.preventDefault();
$("#datepicker").focus();
})
});