Need differentiation of 2 Date objects..
Need to calculate cost based on total days of working or Total hours of working betn the date1 and date2
also need to calcualate Number of holidays within the period of time !
$(document).ready(function () {
$('#CostMaster_labour_deallocationdate').change(function(){
var date1 = $('#CostMaster_labour_deallocationdate1').val();
var date2 = $('#CostMaster_labour_deallocationdate').val();
});
});