Skip to content Skip to sidebar Skip to footer

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/

Solution 2:

Or

$(function() {
  $('#dp3').datepicker();
});

Post a Comment for "Twitter Bootstrap Datepicker Does Not Work"