Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a small trouble that would be great to have some help with. I am creating a small form that I want to take a current date formatted 'dd/mm/yyyy' and add a year(s) variable from a drop-down box to create a final expiry date. The only trouble is that I do not know how to parse the startdate as a date variable in order to complete the calculation. Any thoughts or help would be greatly appreciated. Paul.

<script>
$(document).ready(function(){
$("#registerfor, #startdate, ").change(function() { 
// Get Variables
var startdate = $("#startdate").val();
var registerfor = $("#registerfor").val();
// Add Years to Date
var expirydate = startdate + registerfor;
// Send Result on
$("#expires").val(expirydate);
});
});
</script>

<input name="startdate" id="startdate" value="dd/mm/yyyy" />

<select id="registerfor" name="registerfor">
<option value="1">1 Year</option>
<option value="2">2 Years</option>
<option value="3">3 Years</option>
</select>

<input name="expires" type="text" id="expires" readonly/>
share|improve this question
are you using any jquery for this? – KAsh Feb 4 at 11:57
Hi @kash yes I am hoping to use Jquery – Brandrally Feb 4 at 11:58

4 Answers

up vote 2 down vote accepted

Sometimes what looks like quite a straight forward task becomes quite complicated.

 $(document).ready( function () {

    $("#registerfor, #startdate").change( function () {

        var str = $("#startdate").val();

        if( /^\d{2}\/\d{2}\/\d{4}$/i.test( str ) ) {

            var parts = str.split("/");

            var day = parts[0] && parseInt( parts[0], 10 );
            var month = parts[1] && parseInt( parts[1], 10 );
            var year = parts[2] && parseInt( parts[2], 10 );
            var duration = parseInt( $("#registerfor").val(), 10);

            if( day <= 31 && day >= 1 && month <= 12 && month >= 1 ) {

                var expiryDate = new Date( year, month - 1, day );
                expiryDate.setFullYear( expiryDate.getFullYear() + duration );

                var day = ( '0' + expiryDate.getDate() ).slice( -2 );
                var month = ( '0' + ( expiryDate.getMonth() + 1 ) ).slice( -2 );
                var year = expiryDate.getFullYear();

                $("#expires").val( day + "/" + month + "/" + year );

            } else {
                // display error message
            }
        }
    });
});

Here is a fiddle so you can see it in action.

share|improve this answer
Thanks heaps Bruno. Seriously it is very much appreciated! – Brandrally Feb 4 at 13:37
You're welcome :) – Bruno Feb 4 at 13:41
var dt = new Date($("#startdate").val());

var updateDate = dt.setDate(dt.getFullYear() + $("#registerfor").val());

var dd = updateDate.getDate();
var mm = updateDate.getMonth();
var y = updateDate.getFullYear();

var someFormattedDate = dd + '/'+ mm + '/'+ y;
console.log(someFormattedDate);
share|improve this answer
Hi @don, I appreciate your thoughts, though I really am struggling to make your solution work. I do see the logic, but it won't implement to suit the solution. If I want to add 2 years to 02/10/2012 so that the expiry field displays 02/10/2014 the above solution is not behaving itself. I appreciate your thoughts and your input though. – Brandrally Feb 4 at 12:17
@Brandrally Check my updated code – DON Feb 4 at 12:34
Sorry mate. This piece of code is getting the better of me. It doesn't convert to a date unfortunately. I did an alert check and var updateDate returns a string similar to 3074335200000 so getting the month / day / year out of that is where it's misbehaving. – Brandrally Feb 4 at 12:56

lots of date picker jquery are available on the net

This

one is my favourite, easy to implement and edit as per our needs.

if you want to use script from your code, you can directly pass the date value to var startdate like

var startdate=<?php echo date("Y-m-d")?>

try this.. may help.

share|improve this answer
Hi Kash, thank you for your response, though unfortunately I need to send the variable from an established field and so I wouldn't be able to utilise your suggestion. Cheers for your thoughts though. – Brandrally Feb 4 at 12:09
:) nice to hear you.. – KAsh Feb 4 at 12:11

Dude, it's already working. If you still want to convert in date then do this:

var dat=Date.parse(startdate );
share|improve this answer
Hi Ivan, Wish it was working. The above code produces an outcome similar to 05/10/20122 and By parsing the date all I get is a figure that looks similar to: 13365720000002 – Brandrally Feb 4 at 12:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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