Click here to Skip to main content
15,905,867 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Java Scripting basic QUES Pin
theJazzyBrain15-Jul-03 1:54
theJazzyBrain15-Jul-03 1:54 
Generalwindow.close() Pin
The_Server14-Jul-03 23:26
The_Server14-Jul-03 23:26 
GeneralRe: window.close() Pin
Nelo Angelo15-Jul-03 0:25
Nelo Angelo15-Jul-03 0:25 
GeneralJAVA SCRIPTING - incorparating time scheduling in a slide show Pin
Nelo Angelo14-Jul-03 22:24
Nelo Angelo14-Jul-03 22:24 
GeneralRe: JAVA SCRIPTING - incorparating time scheduling in a slide show Pin
The_Server14-Jul-03 23:21
The_Server14-Jul-03 23:21 
GeneralDate Validation in JScript Pin
michalJ14-Jul-03 3:17
michalJ14-Jul-03 3:17 
GeneralRe: Date Validation in JScript Pin
alex.barylski14-Jul-03 12:09
alex.barylski14-Jul-03 12:09 
GeneralRe: Date Validation in JScript Pin
Rahul Walavalkar22-Jul-03 21:48
Rahul Walavalkar22-Jul-03 21:48 
Try this date validation script, I found on the net

/**
* DHTML date validation script for dd/mm/yyyy. Courtesy of SmartWebby.com (http://www.smartwebby.com/dhtml/)
*/
// Declaring valid date character, minimum year and maximum year
var dtCh= "/";
var minYear=1900;
var maxYear=2100;

function isInteger(s){
var i;
for (i = 0; i < s.length; i++){
// Check that current character is number.
var c = s.charAt(i);
if (((c < "0") || (c > "9"))) return false;
}
// All characters are numbers.
return true;
}

function stripCharsInBag(s, bag){
var i;
var returnString = "";
// Search through string's characters one by one.
// If character is not in bag, append to returnString.
for (i = 0; i < s.length; i++){
var c = s.charAt(i);
if (bag.indexOf(c) == -1) returnString += c;
}
return returnString;
}

function daysInFebruary (year){
// February has 29 days in any year evenly divisible by four,
// EXCEPT for centurial years which are not also divisible by 400.
return (((year % 4 == 0) && ( (!(year % 100 == 0)) || (year % 400 == 0))) ? 29 : 28 );
}
function DaysArray(n) {
for (var i = 1; i <= n; i++) {
this[i] = 31
if (i==4 || i==6 || i==9 || i==11) {this[i] = 30}
if (i==2) {this[i] = 29}
}
return this
}

function isDate(dtStr){
var daysInMonth = DaysArray(12)
var pos1=dtStr.indexOf(dtCh)
var pos2=dtStr.indexOf(dtCh,pos1+1)
var strDay=dtStr.substring(0,pos1)
var strMonth=dtStr.substring(pos1+1,pos2)
var strYear=dtStr.substring(pos2+1)
strYr=strYear
if (strDay.charAt(0)=="0" && strDay.length>1) strDay=strDay.substring(1)
if (strMonth.charAt(0)=="0" && strMonth.length>1) strMonth=strMonth.substring(1)
for (var i = 1; i <= 3; i++) {
if (strYr.charAt(0)=="0" && strYr.length>1) strYr=strYr.substring(1)
}
month=parseInt(strMonth)
day=parseInt(strDay)
year=parseInt(strYr)
if (pos1==-1 || pos2==-1){
alert("The Delivery Date format should be : dd/mm/yyyy")
return false
}
if (strMonth.length<1 || month<1 || month>12){
alert("Please enter a valid Delivery Month")
return false
}
if (strDay.length<1 || day<1 || day>31 || (month==2 && day>daysInFebruary(year)) || day > daysInMonth[month]){
alert("Please enter a valid Delivery Day")
return false
}
if (strYear.length != 4 || year==0 || year<minyear ||="" year="">maxYear){
alert("Please enter a valid 4 digit Delivery Year between "+minYear+" and "+maxYear)
return false
}
if (dtStr.indexOf(dtCh,pos2+1)!=-1 || isInteger(stripCharsInBag(dtStr, dtCh))==false){
alert("Please enter a valid Delivery Date")
return false
}
//return true
}


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

Just pass the date from your form to this function
if(isDate(dtePlanDate)==false)
{
return false;
}


==============

Cheers Smile | :) ,

Written on a gravestone:
Here lies a father of 29. He could have had more but he didn't have the time!
GeneralMap question Pin
Nino_113-Jul-03 17:29
Nino_113-Jul-03 17:29 
GeneralRe: Map question Pin
ZoogieZork13-Jul-03 17:34
ZoogieZork13-Jul-03 17:34 
GeneralRe: Map question Pin
Nino_113-Jul-03 17:46
Nino_113-Jul-03 17:46 
GeneralRe: Map question Pin
Rocky Moore13-Jul-03 22:54
Rocky Moore13-Jul-03 22:54 
GeneralRe: Map question Pin
Nino_114-Jul-03 16:12
Nino_114-Jul-03 16:12 
GeneralJunk mail Pin
Vipul Bhatt11-Jul-03 20:54
Vipul Bhatt11-Jul-03 20:54 
GeneralRe: Junk mail Pin
Roger Wright11-Jul-03 22:37
professionalRoger Wright11-Jul-03 22:37 
GeneralRe: Junk mail Pin
-- NA --12-Jul-03 0:05
-- NA --12-Jul-03 0:05 
GeneralDomain Whois Box Pin
-- NA --11-Jul-03 2:51
-- NA --11-Jul-03 2:51 
GeneralRe: Domain Whois Box Pin
Nino_111-Jul-03 21:12
Nino_111-Jul-03 21:12 
GeneralRe: Domain Whois Box Pin
-- NA --11-Jul-03 21:35
-- NA --11-Jul-03 21:35 
GeneralRe: Domain Whois Box Pin
-- NA --12-Jul-03 0:04
-- NA --12-Jul-03 0:04 
GeneralRe: Domain Whois Box Pin
Nino_112-Jul-03 6:20
Nino_112-Jul-03 6:20 
GeneralRe: Domain Whois Box Pin
-- NA --12-Jul-03 9:42
-- NA --12-Jul-03 9:42 
Generalneed help with arrays in Perl Pin
lnong10-Jul-03 11:14
lnong10-Jul-03 11:14 
GeneralRe: need help with arrays in Perl Pin
ZoogieZork10-Jul-03 14:23
ZoogieZork10-Jul-03 14:23 
GeneralRe: need help with arrays in Perl Pin
ZoogieZork10-Jul-03 14:30
ZoogieZork10-Jul-03 14:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.