Hello, this should be a simple fix. I need this function to give the user a warning when entering an invalid birth date like '9/18/2023' or any future date. Here is my code, thank you! ------------------------------------------------------------ // Fix warning of future dates if possible // function validateBirthdate(){ const today = new Date(); var birthdate = document.getElementById('contact-birthdate').value; if(birthdate.length == 0){ birthdateError.innerHTML = 'Birth Date is required'; return false; } if(!birthdate.match(/^((0?[1-9]|1[012])[- /.](0?[1-9]|[12][0-9]|3[01])[- /.](19|20)?[0-9]{2})*$/)){ birthdateError.innerHTML = 'Birth Date invalid'; return false; } if(birthdate > today){ birthdateError.innerHTML = 'Birth Date cannot be in the future'; return false; } birthdateError.innerHTML = 'Correct'; return true; }

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter6: Using Arrays
Section: Chapter Questions
Problem 1CP: In previous chapters, you created applications for the Greenville Idol competition. Now, modify the...
icon
Related questions
Question

Hello, this should be a simple fix.

I need this function to give the user a warning when entering an invalid birth date like '9/18/2023' or any future date. Here is my code, thank you!

------------------------------------------------------------

// Fix warning of future dates if possible //

function validateBirthdate(){

const today = new Date();

var birthdate = document.getElementById('contact-birthdate').value;

if(birthdate.length == 0){

birthdateError.innerHTML = 'Birth Date is required';

return false;

}

if(!birthdate.match(/^((0?[1-9]|1[012])[- /.](0?[1-9]|[12][0-9]|3[01])[- /.](19|20)?[0-9]{2})*$/)){

birthdateError.innerHTML = 'Birth Date invalid';

return false;

}

if(birthdate > today){

birthdateError.innerHTML = 'Birth Date cannot be in the future';

return false;

}

birthdateError.innerHTML = 'Correct';

return true;

}

Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Types of Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning