View Single Post
Old 03-27-2005, 06:16 PM   #3 (permalink)
idx
Senior Grasshopper
 
idx's Avatar
 
Join Date: Jun 2003
Location: FL
Posts: 317
idx is on a distinguished road
hrm.. works for me. eg:

Code:
<script>
<!--
  function check_form(form) {

     if (form.foo.value == "") {
        alert("foo is required!");
        form.foo.focus();
        return false;
     }

     return true;
  }

//-->
</script>

<form name="me" action="<?=$_SERVER['PHP_SELF']?>" method="POST" onsubmit="return check_form(this);">

<input type="file" name="foo">
<input type="submit">
</form>
idx is offline   Reply With Quote