We often use tags to pass values into a piece of JavaScript. Will the tags
be parsed? For example
<!-- <webobject name="validateEmail"></webobject> = function(){
var valid = false;
var email =
document.getElementById('<webobject name="emailId"></webobject>').value;
var msg = "Invalid email address.";
if(email!=null) {
// check that there's an @
OK = (email.indexOf("@") >= 0);
// validate against regexp
if(OK) {
OK =
/<webobject name="emailRegExp"></webobject>/.exec(email);
if(OK) {
valid = true;
}
} else {
msg = "Email address requires an '@'";
}
}
if(!valid) {
document.getElementById('<webobject name="errorId"></webobject>').innerHTML
= msg;
} else {
document.getElementById('<webobject name="errorId"></webobject>').innerHTML
= "";
}
return valid;
}
// -->
I left of the script tags in the hopew this will get through a fire wall.
Jeffrey Simpson
Youth For Understanding USA
[EMAIL PROTECTED]
Telephone: (240) 235-2114
FAX: (202) 235-2104
Preparing young people for their responsibilities and opportunities in a
changing, interdependent world.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com
This email sent to [EMAIL PROTECTED]