var divWarning = document.getElementById('divWarning');
if (!divWarning)
{alert('Unable to find warning control');return;}
// Validates the Name is between 2 and 18 characters
var txtName2 = document.getElementById('txtLASTNAME');
if (!txtName2)
{alert('Unable to find name control');}
else
{
if (txtName2.value == '' || txtName2.value == sNameDef)
{divWarning.ierHTML='A name is required to start chatting'; divWarning.style.display='block'; txtName2.focus(); txtName2.className='inputerr'; return;}
else
{
if (txtName2.value.length < 2 || txtName2.value.length > 18 )
{divWarning.ierHTML='Your last name must be between 2 and 18 letters'; divWarning.style.display='block'; txtName2.focus(); txtName2.className='inputerr'; return;}
}
} if var letters = /^[A-Za-z]+$/;
(txtName2.value.match(letters))
برچسب:
نویسنده: آیلین رضوانی