Trying to make certain fields "Required" on my "get info" screen in my web page. Example, someone fills out their name, address, city, etc but forgets to put in a ZIP CODE I need a window to pop up that says "Zip is a Required field" or somehting to that effect. This is what I have now.
<TD WIDTH="37%" VALIGN="MIDDLE"><INPUT TYPE="text" NAME="21zip"></TD>
</TR>
<script language="JavaScript">
var response = "21zip"
if(response == " "
{alert("Entry Required"
}
</script>
Any ideas??
<TD WIDTH="37%" VALIGN="MIDDLE"><INPUT TYPE="text" NAME="21zip"></TD>
</TR>
<script language="JavaScript">
var response = "21zip"
if(response == " "
{alert("Entry Required"
}
</script>
Any ideas??