Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7055259
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:43:37+00:00 2026-05-28T03:43:37+00:00

I need to populate dropdown/ select list with calender dates in DD-MM-YYYY format, I

  • 0

I need to populate dropdown/ select list with calender dates in DD-MM-YYYY format, I have to do this in JavaScript and script should automatically fill Dropdown with dates for next 3 months.

I tried to look for such script but could not find. I would appreciate any help. i am open to use any jQuery if it works.

I have to fill dropdown with date in the format mentioned i cant use popup Calenders etc..

Example:

<select class="ddDates" id="Dates" name="Dates">
    <option value="10-01-2012" selected>10-01-2012</option>
    <option value="11-01-2012">11-01-2012</option>
    <option value="12-01-2012">12-01-2012</option>
    <option value="13-01-2012">13-01-2012</option>
</select>

I have searched google and i cant even find the logic how i can read system calender and populate the dropdown/ select list

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T03:43:37+00:00Added an answer on May 28, 2026 at 3:43 am

    This code generates the markup in question using JavaScript (and jQuery)

    function pad(n){return n<10 ? '0'+n : n}
    var date = new Date();
    var selectElement = $('<select>'), optionElement;
    for (var count =0; count < 90; count++){
        date.setDate(date.getDate() + 1);
        formattedDate = pad(date.getUTCDate()) + '-' + pad(date.getUTCMonth()+1) + '-' +  date.getUTCFullYear();
        optionElement = $('<option>')
        optionElement.attr('value',formattedDate);
        optionElement.text(formattedDate);
        selectElement.append(optionElement);
    }
    

    You can change the value of count according to your logic.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to populate a dropdown list when I select a certain value and
I have a livesearch script that i need to populate my html menu with
I have a need to populate a Word 2007 document from code, including repeating
I have a structure which I need to populate and write to disk (several
I have an application where I need to populate a textbox with a company
If I have a business object with 50 fields, and I need to populate
I need to populate a dropdown in ASP.NET MVC 3. I was hoping to
At the moment I using a dynamic select to populate a dropdown. What I
I have a page with a ScriptManager, a generic HTML drop-down list ( <select>
I have a ASP:DropDown list which is populated by the following: public void Fill1()

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.