An open API service indexing awesome lists of open source software.

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

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();
})
});