If you have been involved in developing a school website with Joomla, perhaps you would like to help review the chapter in development. It will only need a couple of hours of your time and you will of course get a plug in the book!
If you are interested in helping out with reviewing this chapter, please enter your information in the form below.
function verifyRequired10() {
if (document.icpsignup.fields_email.value == “”) {
alert(“The Email field is required.”);
return false;
}
if (document.icpsignup.fields_fname.value == “”) {
alert(“The First Name field is required.”);
return false;
}
if (document.icpsignup.fields_lname.value == “”) {
alert(“The Last Name field is required.”);
return false;
}
if (document.icpsignup.fields_business.value == “”) {
alert(“The School field is required.”);
return false;
}
if (document.icpsignup.fields_state.value == “”) {
alert(“The State field is required.”);
return false;
}return true;
}
| * First Name | |
| * Last Name | |
| * School | |
| * State | |
| * = Required Field | |