Jump to content

datepicker minDate based on time of day


bravo14

Recommended Posts

Hi Guys

 

I have got a datepicker on a site and have set the minDate to be tomorrow.

 

 

<script>
 $(function() {
  $( "#delDate" ).datepicker({
            dateFormat: 'd MM yy',
            changeMonth: true,
   changeYear: true,
   minDate: "+1D",
   constrainInput: true,
      beforeShowDay: noWeekendsOrHolidays
  });
 });
 </script>

 

What I want to do is set the minDate to +2 if the time is after 5pm, anybody got any guidance on how to achieve this.

 

Link to comment
Share on other sites

Try this...

<script>
    $(function() {
        $( "#delDate" ).datepicker({
            dateFormat: 'd MM yy',
            changeMonth: true,
            changeYear: true,
            minDate: "+1D",
            constrainInput: true
        });

        var currentdate = new Date();

        if (currentdate.getHours() >= 17) {
            currentdate.setDate(currentdate.getDate() + 2);

            $( "#delDate" ).datepicker( "option", "minDate", currentdate);

        }
    });
</script>
Link to comment
Share on other sites

  • 2 weeks later...

 

Try this...

<script>
    $(function() {
        $( "#delDate" ).datepicker({
            dateFormat: 'd MM yy',
            changeMonth: true,
            changeYear: true,
            minDate: "+1D",
            constrainInput: true
        });

        var currentdate = new Date();

        if (currentdate.getHours() >= 17) {
            currentdate.setDate(currentdate.getDate() + 2);

            $( "#delDate" ).datepicker( "option", "minDate", currentdate);

        }
    });
</script>

 

I've been googling for a few hours and just stumbled upon this. It works great for me but how could I modify it to target a time with minutes like 11:30.

 

Here's what I have but it's not working out so well.

// Check time
var currentdate = new Date();
var hour = now.getHours(); 
var mintues = now.getMinutes();
			
// if time is after 11:30 change start date.
if ((hour*60 + mintues) >= 690) {
	currentdate.setDate(currentdate.getDate() + 2);
	$( "#delnote" ).datepicker( "option", "minDate", currentdate);
}

Thanks,

Jesse

Edited by jesruiz
Link to comment
Share on other sites

Fixed it, thanks for the initial start!

// Check time
var currentdate = new Date();
var hour = currentdate.getHours(); 
var mintues = currentdate.getMinutes();
			
// if time is after 11:30 change start date.
if ((hour*60 + mintues) >= 690) {
	currentdate.setDate(currentdate.getDate() + 2);
	$( "#delnote" ).datepicker( "option", "minDate", currentdate);
}
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.