Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How do I get the number of days between two dates in jQuery?
How to calculate the number of days between two dates using javascript

So basically i need to calculate days since certain date. So far, script calculate on what day you were born, now i want that it also calculate how much time(in days) passed

<SCRIPT LANGUAGE="JavaScript">




function calculate() {

    month = document.form.month.selectedIndex;

    month = document.form.month.options[month].value;

    day = document.form.day.selectedIndex;

    day = document.form.day.options[day].value;

    year = document.form.year.value;



    var oyear=year



    var dob = " "+ year +", "+month + ",  "+day;

    var thenx = new Date(dob);



    var year=thenx.getYear();

    if (year<100) year="19" + thenx.getYear();

    else year=thenx.getYear();



    if (year > 1969) wyear=year;

    else {

        if (oyear<1900) {

            if (oyear>1800) {

                wrelyear= (eval(oyear)-1801)%(28);

                wyear = wrelyear+1981;

            }

            else wyear = 1970 

                }

        else

            if (oyear>1900) {wrelyear= (eval(oyear)-1901)%(28); 

                wyear= wrelyear+1985

            }

            else 

                if (oyear==1900) {wyear= 1990;

                }              

    }

    var dob = " "+ wyear +", "+month + ",  "+day;

    var thenx = new Date(dob);



    var theday = thenx.getDay()+1;

    var date=thenx.getDate();



    var weekday = new Array(6);

    weekday[1]="Ned";

    weekday[2]="pon";

    weekday[3]="tor";

    weekday[4]="sre";

    weekday[5]="cet";

    weekday[6]="pet";

    weekday[7]="sob";

    if (day != date) alert("Vnos datuma ni veljavn "+day+" ..."+date+"::"+oyear+"..."+year+" "+dob+"=="+wyear+".-.-"+thenx+" "+day+" "+month);

    else {

        dayborn = weekday[theday];

        dob = dayborn + ", " + month + " " + date + ", " + oyear + ".";

        alert("rojen si bil  " + dob);

    }

}


</script>
share|improve this question

marked as duplicate by epascarello, Neal, Phrogz, Toon Krijthe, Dori Nov 11 '11 at 7:55

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Simple google search led me to this code: http://javascript.internet.com/time-date/days-since.html
Which I am sure you can manipulate to fit your needs

share|improve this answer
Yes i know, but i need some help with adding it to script i already have. Sorry was bad question from me. Can anyone help me with that? – user1036142 Nov 10 '11 at 17:54

Not the answer you're looking for? Browse other questions tagged or ask your own question.