View Single Post
Old 02-19-2010, 07:15 PM   PM User | #3
jcdevelopment
Senior Coder

 
jcdevelopment's Avatar
 
Join Date: Oct 2007
Location: Cowboy Nation
Posts: 2,171
Thanks: 173
Thanked 257 Times in 257 Posts
jcdevelopment will become famous soon enoughjcdevelopment will become famous soon enough
thanks, that seems it should work, but alas it doesnt, all text fileds work, so should i make it look like the top with?

Code:
with (thisform)
  {
  if (validate_required(email,"Email must be filled out!")==false)
  {email.focus();
  email.style.border='2px solid red';
  return false;}
  }
		
		with (thisform)
  {
  if(document.getElementById('m21')[0].checked == true) 
  {
  window.alert('Please select the state')
  m21.focus();
   return false;}
  }
jcdevelopment is offline   Reply With Quote