Twitter Bootstrap Datepicker Does Not Work
Sarting from here I use the following html code:
Solution 1:
As mentioned previously, make sure you are including jQuery, and also wrap your datepicker initialization in the jQuery ready() function, like so:
$(document).ready(function($) {
$('#dp3').datepicker();
});
See it working here: http://jsfiddle.net/rUa7M/
Post a Comment for "Twitter Bootstrap Datepicker Does Not Work"