Saturday 1 August 2015

[Web-development (jquery)] JAVASCRIPT calculate date and date difference

JAVASCRIPT calculate date and date difference
JAVASCRIPT calculate date and date difference


<div></div> <script type="text/javascript"> //day/month/year t1="02/06/2013"; t2="01/07/2013"; //Total time for one day var one_day=1000*60*60*24; //Here we need to split the inputed dates to convert them into standard format var x=t1.split("/"); var y=t2.split("/"); //date format(Fullyear,month,date) var date1=new Date(x[2],(x[1]-1),x[0]); var date2=new Date(y[2],(y[1]-1),y[0]) var month1=x[1]-1; var month2=y[1]-1; //Calculate difference between the two dates, and convert to days var Diff_result=Math.ceil((date2.getTime()-date1.getTime())/(one_day)); //results 29=Days var somediv = document.getElementById('someid'); somediv.innerHTML = Diff_result + "=Days"; </script> 

source : http://tutorial101.blogspot.com, http://lintas.me, http://dailymotion.com

No comments:

Post a Comment

Contact Us

Name

Email *

Message *

All content at imdelgado fasion style was found freely distributed on the internet and is presented for informational purposes only.
Images / photos / videos found in this site reserved by its respective owners.
We does not upload or host any files.
Home | DMCA | Contact