Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Event Handling
Message
De
26/02/2003 04:58:48
 
 
À
23/02/2003 12:59:29
Information générale
Forum:
Internet
Catégorie:
Javascript
Titre:
Divers
Thread ID:
00756757
Message ID:
00757969
Vues:
17
>Tell me if there is any function in Javascript to check whether a date is valid or not.

Try the parse method of the Date object, if you pass it a string, it returns either the milliseconds since midnight 1/1/1970 if it is valid date or else NaN (check with isNaN()).
function CheckDate( DateString )
{
return( ! isNaN( Date.parse( DateString ) ) ) ;
}
>Also tell the events associated with < SELECT > for dropdown of the list box except for click ofcourse (something associated with the keyboard)

This site lists all evcents - click on the event you are interested in & you will get a list of tags that support that event.
http://www.blooberry.com/indexdot/html/tagpages/attributes/events.htm
Len Speed
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform