DatePicker related question.
sir i want to know a question that how to find the difference between two days using datepicker in windows phone 8 and ans get back in days?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Aayushmaan KookeeyanPosted May 10, 2016, 8:20 AM
Bhuvanesh MohankumarPosted May 10, 2016, 8:14 AM
Can you try this type of difference,
var start = $('#datepicker').datepicker('getDate');
var end = $('#datepicker1').datepicker('getDate');
var days = (end - start)/1000/60/60/24;
alert(days);