קח תיקנתי לך גם שיפעל ב FF:
PHP קוד:
<script type="text/javascript">
function validation() {
if (document.getElementById('attached').value == ""){ // required name
alert("בבקשה בחר קובץ לעלות.");
document.getElementById('attached').focus();
return false;
}
if (document.getElementById'(agree').checked == false )
{
alert("עליך להסכים לתנאים!");
return false;
}
return true;
}
</script>
לא בדקתי אותו אבל נירא לי שהוא עובד, אני בטוח ב 99.99%
ותעשה הכל בארוע
PHP קוד:
onsubmit="return validation()"