The HTML <textarea> dirname attribute is used to enable the text direction of the input and the Textarea Field after submitting the form. The value of the dirname attribute must be the name of the input field and textarea, followed by “.dir”.
Syntax:
<textarea name="myname" dirname="myname.dir">
Attribute Values:
name.dir: It specifies the text direction of the textarea that are submitted.
Example:
<!DOCTYPE html>
< html >
< head >
< style >
h1 {
color: green;
}
</ style >
</ head >
< body >
< form action = "#" >
< h1 >
GeeksforGeeks
</ h1 >
< h2 >
HTML Textarea dirname attribute
</ h2 >
< textarea name = "fname"
dirname = "fname.dir" >
It is a Computer Science
Portal for Geeks.
</ textarea >
< input type = "submit"
value = "Submit" >
</ form >
< p >
After the Submission of the
form, the text direction of
the Textarea field will
also be submitted.
</ p >
</ body >
</ html >
|
Output:

Supported Browsers: The browsers supported by HTML <textarea> dirname attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Apple Safari
- Opera
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
30 Dec, 2019
Like Article
Save Article