1$('#Release').on('dp.change', function(e){
2 var formatedValue = e.date.format(e.date._f);
3 console.log(formatedValue);
4})
1$('.datepicker').datepicker()
2 .on(picker_event, function(e) {
3 // `e` here contains the extra attributes
4 });
5