Trying To Put The Bootstrap-datepicker In My Rails Project
http://www.eyecon.ro/bootstrap-datepicker/ I am trying to put the datepicker in my rails project. Here the date is not pop up. I follow the instruction use javascripts n all but it
Solution 1:
Add in application.js
//= require_self
and add $('#dp5').datepicker()
when dom loaded
$(function() {
$('#dp5').datepicker()
});
Post a Comment for "Trying To Put The Bootstrap-datepicker In My Rails Project"