Getting and Setting a Text Object's value Property : TextField « Form Control « JavaScript DHTML






Getting and Setting a Text Object's value Property

   

<html> 
<head> 
<title>Text Object value Property</title> 
<script type="text/javascript"> 
function upperMe() { 
    var field = document.forms[0].converter; 
    var upperCaseVersion = field.value.toUpperCase(); 
    field.value = upperCaseVersion; 
} 
</script> 
</head> 
<body> 
<form onsubmit="return false"> 
<input type="text" name="converter" value="sample" onchange="upperMe()"> 
</form> 
</body> 
</html> 

   
    
    
  








Related examples in the same category

1.Text field tab Index
2.Is Text Editable
3.Get vcard name
4.Text Field autocomplete Example
5.TextField focus and select all
6.Show TextField value in Dialog
7.TextField focus, blur, and click action
8.Display textfield value in new page
9.JavaScript Loan Calculator
10.Another TextField jump
11.TextField get Focus and clear content
12.Validate an input field with minimum and maximum values
13.Validate an field with a maximum number of characters
14.Select the textfield and focus
15.Focus an input field
16.Jump to the next field
17.Get textfield value
18. Methods and Properties of the Text Object
19.Selecting Text Upon Focus
20.Assign a default value to a Text object
21.Compound Interest Calculator
22.Resetting a Text Object to Default Value
23.Getting and Setting a Text Object's Value
24.Passing a Text Object (as this) to the Function
25.Text Object Select and Focus
26.Data Validation via an onChange event Handler
27.Add textfield dynamically into HTML
28. Firing the onSame Event (FireFox)
29.Numerals Only
30.Letter only, yes no only textfield
31.Auto focus textfield
32.Block enter textfield
33.If the textfield has been changed
34.Check if text field input is a number
35.Call select method to highlight the text field
36.Check if a text field is empty
37.Change the text value in text box into upper case
38.Feed value from array to text box