TextField focus and select all : TextField « Form Control « JavaScript DHTML






TextField focus and select all

  
<html>
<head>
<script language="JavaScript">
<!--
function checkField(formName)  {
  if (formName.f1.value != "Joe") {
     document.forms[0].f1.focus();
     document.forms[0].f1.select();
  }
}
//-->
</script>
</head>
<body>
<form>
<pre>
Field1 <input name="f1" onBlur="checkField(this.form)"><br>
Field2 <input name="f2">
</pre>
</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.Show TextField value in Dialog
6.TextField focus, blur, and click action
7.Display textfield value in new page
8.JavaScript Loan Calculator
9.Another TextField jump
10.TextField get Focus and clear content
11.Validate an input field with minimum and maximum values
12.Validate an field with a maximum number of characters
13.Select the textfield and focus
14.Focus an input field
15.Jump to the next field
16.Get textfield value
17. Methods and Properties of the Text Object
18.Selecting Text Upon Focus
19.Assign a default value to a Text object
20.Compound Interest Calculator
21.Resetting a Text Object to Default Value
22.Getting and Setting a Text Object's Value
23.Passing a Text Object (as this) to the Function
24.Text Object Select and Focus
25.Data Validation via an onChange event Handler
26.Add textfield dynamically into HTML
27. Firing the onSame Event (FireFox)
28.Numerals Only
29.Letter only, yes no only textfield
30.Auto focus textfield
31.Block enter textfield
32.If the textfield has been changed
33.Check if text field input is a number
34.Call select method to highlight the text field
35.Check if a text field is empty
36.Change the text value in text box into upper case
37.Getting and Setting a Text Object's value Property
38.Feed value from array to text box