I am trying to create a datepicker using twitter datepicker.css and bootstrap-datepicker.js but it's not working. I'm using codeigniter in this project.
<input type="text" name="end_date" value="" class="datepicker" data-format="dd-MM-yyyy" />
<script>
$(function() {
$( ".datepicker" ).datepicker();
});
</script>
I've included both the files mentioned above but this is not working. How can I make it work?
I have a Error(Firebug) --> "TypeError: $(...).datepicker is not a function"