Mr3Putt
You are correct i got in a hurry
<html>
<head>
<title></title>
<script type="text/javascript">
<!--
function showDets(obj){
var selForm = document.insert;
var selChoice = selForm.dt.options.[selForm.dt.selectedIndex].value;
var oId = document.getElementById(obj);
if(selChoice ==...
First:
if (theForm.email.value == "")
will allow all spaces
so i changed it to
if(theForm.email.value.split(" ").join("") == "")
to take care of them
[code]
<html>
<head>
<title></title>
<script type="text/javascript">
<!--
function FormValidator(theForm)
{
if (theForm.email.value.split("...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.