Open In App

HTML <textarea> autofocus Attribute

Last Updated : 04 Jul, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <textarea> autofocus Attribute is used to specify that the textarea field should get automatically focus when the page loads. It is a Boolean Attribute.

Syntax:

<textarea autofocus>

Example: This Example illustrates the use of autofocus attribute in Textarea Element.

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML textarea autofocus Attribute
    </title>
</head>
 
<body style="text-align:center">
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
    <h2>
        HTML Textarea autofocus Attribute
    </h2>
    <textarea id="geeks" autofocus>
        write something here----
</textarea>
</body>
 
</html>


Output:

textAreaAutofocus.png

HTML textarea autofocus

Supported Browsers:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads