How do i add datepicker using bootstrapdatepicker in MVC application?
Am creating one application using .net MVC. I want to add datepicker. I downloaded bootstrapdatepicker using nu-get package. Could anyone please explain how to use it? I tried below but it doesn't work.
Addded js and css files
- datepicker3.css
- bootstrap-datepicker.js
Then i added one input box in my page Hide Copy Code
<input type="text" id="gd" type="text" class="form-control">
added below code as well Hide Copy Code
$(document).ready(function () {
$("#gd").datepicker({
calendarWeeks: true
});
});
Please suggest if you have any other way to do this or explain me how to do this using nuget package? But nothing is coming when I click on input box . But am expecting datepicker to populate. What is the issue here?

<script>tags?