Real Estate Forums
| Coding HTML, ASP, PHP, JAVA MYSQL and more. All coding questions should be asked here. |
![]() |
|
|
Thread Tools | Display Modes |
|
||||
|
Hi Guys,
I am trying to change my contact form so that the Name and E-mail box are required fields, Can anyone give me a hand with this? Here is where the contact form is: http://www.jboyerhomes.com/contact.html Thank you for your help.
__________________
James Boyer RE/MAX Properties Unlimited Morristown, NJ 07960 973-647-0253 Serving the Real Estate markets of Morristown, Morris Township, Madison NJ Real Estate, Chatham NJ , Summit, Short Hills, Millburn, Maplewood, South Orange, & West Orange Referals happily given and accepted. For information on home sales in New Jersey please contact. Morristown NJ Real Estate Madison NJ Real Estate Chatham NJ Real Estate |
|
|||
|
If you don't want to mess with your php script, the easiest way is with a javascript alert.
Add this to your head tag: Code:
<script type="text/javascript"><!--
function validateForm() {
with (document.contact) {
var alertMsg = "The following required fields have been left empty:\n";
if ( visitor.value == "" ) alertMsg += "\nYour Name";
if (visitormail.value == "") alertMsg += "\nYour Email Adress";
if (alertMsg != "The following required fields have been left empty:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }
// -->
</script>
Code:
<form method="post" action="sendeail.php" name="contact" onSubmit="return validateForm()> |
|
||||
|
Thanks PLS, I got it working a little but may try your suggestion this afternoon.
Jim
__________________
James Boyer RE/MAX Properties Unlimited Morristown, NJ 07960 973-647-0253 Serving the Real Estate markets of Morristown, Morris Township, Madison NJ Real Estate, Chatham NJ , Summit, Short Hills, Millburn, Maplewood, South Orange, & West Orange Referals happily given and accepted. For information on home sales in New Jersey please contact. Morristown NJ Real Estate Madison NJ Real Estate Chatham NJ Real Estate |
![]() |
| Thread Tools | |
| Display Modes | |
|
|