Do not use on any
shared computer
August 29, 2008 08:02pm pdt
 
[x]
Attachment Details

How to automatically uppercase the first letter of value entered into html form with javascript

Hi Experts!

I'm currently using the attached code snippet for simple validation of a couple of form fields.  

Now I want to make sure to uppercase the first letter of every word entered into the 'Name' field of the form.

How would I do it with javascript?  Can you explain or comment the code to too so a javascript dummy like me knows how it works?

Thanks!

John

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
function checkform ( form ){	
	
	if (form.Name.value == "" || form.Name.value == "first name" || form.Name.value.length < 2 ) {
		alert( "Please enter your first name." );
		form.Name.focus();
		form.Name.value = "";
		return false ;
  	}
  	if (form.Email1.value == "" || form.Email1.value == "primary email" || form.Email1.value.length < 5) {
    	alert( "Please enter your email address." );
		form.Email1.value = "";
    	form.Email1.focus();
    	return false ; 
	}
  // ** If all fields pass the check, submit the form **
  return true ;
}
Start your free trial to view this solution
Question Stats
Zone: Programming
Question Asked By: webgeek154
Question Asked On: 07.23.2008
Participating Experts: 2
Points: 500
Views: 0
Translate:
Loading Advertisement...
 
[+][-]Expert Comment by HonorGod

Rank: Sage

Expert Comment by HonorGod:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Expert Comment by HonorGod

Rank: Sage

Expert Comment by HonorGod:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Expert Comment by Lolly-Ink

Rank: Guru

Expert Comment by Lolly-Ink:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Expert Comment by HonorGod

Rank: Sage

Expert Comment by HonorGod:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080723-EE-VQP-34 / EE_QW_2_20070628