473,785 Members | 2,698 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Javascript Date Validation in MM/DD/YYY output format

The following javascript code gives me the date validation that I need
except
after the correct date is entered into the field, it puts the date in
the wrong format

EXAMPLE: User enters 2/14/2006 and it shows in the field Feb 14 2006
after the onBlur
I want it to leave the formatting of the date in the field as 2/14/2006

and not change the input to Feb 14 2006
I am very new to javascript and I don't know what to take out in the
following code to accomplish what I need. Can Anyone HELP? Thanks so
much
<SCRIPT LANGUAGE="JavaS cript">
<!-- Begin
function checkdate(objNa me) {
var datefield = objName;
if (chkdate(objNam e) == false) {
datefield.selec t();
alert("That date is invalid. Please try again.");
datefield.focus ();
return false;
}
else {
return true;
}

}
function chkdate(objName ) {
var strDatestyle = "US"; //United States date style
//var strDatestyle = "EU"; //European date style
var strDate;
var strDateArray;
var strDay;
var strMonth;
var strYear;
var intday;
var intMonth;
var intYear;
var booFound = false;
var datefield = objName;
var strSeparatorArr ay = new Array("-"," ","/",".");
var intElementNr;
var err = 0;
var strMonthArray = new Array(12);
strMonthArray[0] = "Jan";
strMonthArray[1] = "Feb";
strMonthArray[2] = "Mar";
strMonthArray[3] = "Apr";
strMonthArray[4] = "May";
strMonthArray[5] = "Jun";
strMonthArray[6] = "Jul";
strMonthArray[7] = "Aug";
strMonthArray[8] = "Sep";
strMonthArray[9] = "Oct";
strMonthArray[10] = "Nov";
strMonthArray[11] = "Dec";
strDate = datefield.value ;
if (strDate.length < 1) {
return true;

}
for (intElementNr = 0; intElementNr < strSeparatorArr ay.length;
intElementNr++) {
if (strDate.indexO f(strSeparatorA rray[intElementNr]) != -1) {
strDateArray = strDate.split(s trSeparatorArra y[intElementNr]);
if (strDateArray.l ength != 3) {
err = 1;
return false;

}
else {
strDay = strDateArray[0];
strMonth = strDateArray[1];
strYear = strDateArray[2];

}
booFound = true;
}

}
if (booFound == false) {
if (strDate.length >5) {
strDay = strDate.substr( 0, 2);
strMonth = strDate.substr( 2, 2);
strYear = strDate.substr( 4);
}

}
if (strYear.length == 2) {
strYear = '20' + strYear;

}
// US style
if (strDatestyle == "US") {
strTemp = strDay;
strDay = strMonth;
strMonth = strTemp;

}
intday = parseInt(strDay , 10);
if (isNaN(intday)) {
err = 2;
return false;

}
intMonth = parseInt(strMon th, 10);
if (isNaN(intMonth )) {
for (i = 0;i<12;i++) {
if (strMonth.toUpp erCase() == strMonthArray[i].toUpperCase()) {
intMonth = i+1;
strMonth = strMonthArray[i];
i = 12;
}

}
if (isNaN(intMonth )) {
err = 3;
return false;
}

}
intYear = parseInt(strYea r, 10);
if (isNaN(intYear) ) {
err = 4;
return false;

}
if (intMonth>12 || intMonth<1) {
err = 5;
return false;

}
if ((intMonth == 1 || intMonth == 3 || intMonth == 5 || intMonth == 7
|| intMonth == 8 || intMonth == 10 || intMonth == 12) && (intday > 31
|| intday < 1)) {
err = 6;
return false;

}
if ((intMonth == 4 || intMonth == 6 || intMonth == 9 || intMonth == 11)

&& (intday > 30 || intday < 1)) {
err = 7;
return false;

}
if (intMonth == 2) {
if (intday < 1) {
err = 8;
return false;

}
if (LeapYear(intYe ar) == true) {
if (intday > 29) {
err = 9;
return false;

}
}
else {
if (intday > 28) {
err = 10;
return false;

}
}
}
if (strDatestyle == "US") {
datefield.value = strMonthArray[intMonth-1] + " " + intday+" " +
strYear;

}
else {
datefield.value = intday + " " + strMonthArray[intMonth-1] + " " +
strYear;

}
return true;
}
function LeapYear(intYea r) {
if (intYear % 100 == 0) {
if (intYear % 400 == 0) { return true; }

}
else {
if ((intYear % 4) == 0) { return true; }

}
return false;
}
function doDateCheck(fro m, to) {
if (Date.parse(fro m.value) <= Date.parse(to.v alue)) {
alert("The dates are valid.");

}
else {
if (from.value == "" || to.value == "")
alert("Both dates must be entered.");
else
alert("To date must occur after the from date.");
}

}
// End -->
</script>

Feb 15 '06 #1
3 8708
pmarisole wrote:
The following javascript code gives me the date validation that I need
except
after the correct date is entered into the field, it puts the date in
the wrong format

EXAMPLE: User enters 2/14/2006 and it shows in the field Feb 14 2006
after the onBlur
I want it to leave the formatting of the date in the field as 2/14/2006

and not change the input to Feb 14 2006


I'm not going to give you the answer - but I'll help you to learn the
answer yourself:

Research the Javascript Date() object - I would recommend using the
Javascript object reference on w3schools. You will find that there are
ways to get the numerical month, day of the month, and full year
separatly. Using those, you can create a string with whatever
formatting you want.

Feb 15 '06 #2
pmarisole wrote:
The following javascript code gives me the date validation that I need
except
after the correct date is entered into the field, it puts the date in
the wrong format

EXAMPLE: User enters 2/14/2006 and it shows in the field Feb 14 2006
after the onBlur
I want it to leave the formatting of the date in the field as 2/14/2006

and not change the input to Feb 14 2006
Most of all you need to know is here:

<URL:http://www.merlyn.demo n.co.uk/js-date9.htm>
You will also find ways of validating dates that are much more concise
than what you've posted.

Month, day, year format is used in only one country that I know of -
pretty much the entire rest of the world uses either day, month, year or
year, month, day.

Read about ISO 8601 date formats, here's a piece by the University of
Illinois on why you should be using them:

<URL:http://www.uic.edu/depts/accc/software/isodates/isocontents.htm l>

I am very new to javascript and I don't know what to take out in the
following code to accomplish what I need. Can Anyone HELP? Thanks so
much


Read about date validation either by searching the archives here or use
this:

<URL:http://www.merlyn.demo n.co.uk/js-date4.htm>

[...]

--
Rob
Feb 16 '06 #3
JRS: In article <11************ *********@g44g2 000cwa.googlegr oups.com>,
dated Wed, 15 Feb 2006 10:52:37 remote, seen in
news:comp.lang. javascript, pmarisole <jb******@midso uth.rr.com> posted :

function LeapYear(intYea r) {
if (intYear % 100 == 0) {
if (intYear % 400 == 0) { return true; }

}
else {
if ((intYear % 4) == 0) { return true; }

}
return false;
}

The code performs two tests first to get a return which only occurs for
one year in 400. Performing the 4-year test first gives a finished
result three times out of four. While speed will not be critical,
there's no point in using a really silly method.

Did all that code come off the Web, out of a book, or from a teacher; or
was it your own invention? I'd not use any of it.

As an exercise, write the LeapYear function efficiently. Then delete
it, because it is not needed.

Read the newsgroup FAQ; see below.

The sensible way to input and output dates is given by ISO 8601 - as
YYYY-MM-DD - which has been incorporated as National Standards
throughout the civilised world.
*** DO NOT MULTI-POST ***

*** AND FIND OUT THAT VBSCRIPT IS NOT JAVASCRIPT ***

*** AND CHECK YOUR SUBJECT LINE BEFORE POSTING ***

--
© John Stockton, Surrey, UK. ?@merlyn.demon. co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.c om/faq/> JL/RC: FAQ of news:comp.lang. javascript
<URL:http://www.merlyn.demo n.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demo n.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Feb 16 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
14041
by: Rob | last post by:
I have a date text box (input type = text) in an ASP.NET/Javascript environment. I wanted to force the users to enter dates in a "__/__/____", "dd/mm/yyyy" or similar format. The textbox needs to support normal copy/paste/delete format. There wasn't much on Google to help so (after a bit of toil) though I'd post my suggested solution here. No guarantees I'm afraid; just hope it helps somebody out there. Rob Here's the ASP source code:
0
1995
by: Brian Conway | last post by:
I am having some validation and insertion problems. I am using a date picker that takes the selected date and puts it to ("dd-MMM-yyyy") format, as this was the only format that Oracle would accept on an insert, however, when it does a comparision validation it is failing. I have StartDate = comparing to an invisible textbox that contains todays date EndDate = comparing to StartDate needing to be >= SetupDate = comparing to StartDate...
7
31843
by: James P. | last post by:
Hello there, In my asp.net page using VB, I have a date text field in mm/dd/yyyy format. When a date is entered, I'd like to validate it to make sure the date is greater than or equal to the current date. If not, I'd like to display the error message to ValidationSummary. It seems to make sense to me to use CompareValidator but the problem is put the current date into CompareValidator. So, I created a hidden text field in my aspx. ...
5
2647
by: | last post by:
Hi all, Has anyone been able to write some custom javascript on the onclick event of submit button to do certain things like disable submit button, only submit form once etc. This was a breeze in 1.1 since I could edit the .js file. Now in 2.0 I can no longer do this. Also, my code would have to be called after all client-side validation was done and was successful. Any ideas? TIA!
10
162682
by: bonnie.tangyn | last post by:
Dear all In my ASP page, user can enter date in dd/mm/yyyy format. How can I use Javascript to convert dd/mm/yyyy to yyyy-mm-dd hh:mm:ss. Please give me some advices. Cheers Bon
2
11515
by: syntego | last post by:
We commonly use triggers to log changes to our main tables to historical log tables. In the trigger, we create a concatenated string of the old values by casting them as follows: CAST(O.MYDATE AS CHAR(30)) When directly updating date fields in the main table, the logged value gets saved in the format YYYY-MM-DD as expected.
10
2675
by: Tom Cole | last post by:
While I've done javascript work for as long as I can remember (since Netscape first released it), I've only ever used it for trivial things, change a color here, validate a text element there, blah blah blah. With Ajax (actually, the uncovering of the XmlHTTPRequest object) I absolutely see the benefit of moving more of the UI work to the client, rather than doing page refreshes. I know there are a bunch of libraries out there...
2
3157
by: sorobor | last post by:
dear sir .. i am using cakephp freamwork ..By the way i m begener in php and javascript .. My probs r bellow I made a javascript calender ..there is a close button ..when i press close button then the calender gone actually i want if i click outside off the calender then it should me removed ..How kan i do this ... Pls inform me as early as possible .. I am waiting for ur quick replay ...Here i attached the source code .... <!DOCTYPE...
1
7153
pbmods
by: pbmods | last post by:
Looking for a print_r() for JavaScript? Look no further! Finally, a decent way to figure out what's in that mysterious Array or Object! Note that this version of print_r() relies on (included) getType(), which is designed to be a browser-independent way of detecting basic types in JavaScript (unfortunately, the $object.constructor.match() trick doesn't work in Safari nor IE). Special thanks to the following TSDN members whose help was...
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10327
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10151
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8973
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4053
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3647
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.