I\'m new at this and I really need your help because I\'ve been struggling for days with this…
I want to calculate days between two dates chosen with datepicker. Am I on the rig
var start = $('#datepicker').datepicker('getDate');
var end = $('#datepicker1').datepicker('getDate');
var days = (end - start)/1000/60/60/24;
alert(days);