Displaying 1 result from an estimated 1 matches for "email_projectname".
2009 Jan 08
4
Problem with disable_with
Hi Group,
I have a registration.html.erb page with the following JavaScript at
the top which I use to validate form fields:
<script type="text/javascript">
<!--
function validate(){
if ((document.myForm.email_projectname.value=="")||
(document.myForm.email_projecttype_id.selectedIndex<1)||
(document.myForm.email_region_id.selectedIndex<1))
    {
        alert ("You must fill in all of the required fields!")
        return false
    }
else
    return true;
}
//-->
</script>
furthe...