פשוט תזמן את הפונקציה מהסקריפט הראשי:
קוד:
<script language="javascript" type="text/javascript">
function chk_letter(str){
for(i=0;i<str.length;i++)
{
if(((str.charAt(i))>'z' || (str.charAt(i))<'a') || ((str.charat(i))>'Z' || (str.charat(i))<'A')
return (false);
}
return (true);
return(ok);}
// Validate all form input before sending the request on its way
function validate ( frm ) {
if (frm.username.value == '') {
alert('בבקשה הכניסו כינוי.');
return false;
}
else
{
if((chk_letter(frm.username.value))=false)
alert('תקן כינוי.');
return false;
}
if (frm.name.value == '') {
alert('בבקשה הכניסו שם אמיתי.');
return false;
}
else
{
if((chk_letter(frm.username.value))=false)
alert('תקן כינוי.');
return false;
}
// All is well - submit the form
return true;
}
</script>