Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML dirname Attribute


Definition and Usage

The dirname attribute enables the submission of the text direction of the input field/textarea

The dirname attribute's value is always the name of the input field/textarea, followed by ".dir".


Applies to

The dirname attribute can be used on the following elements:

Elements Attribute
<input> dirname
<textarea> dirname

Examples

Input Example

An HTML form where the field's text direction will be submitted:

<form action="/action_page.php">
  First name: <input type="text" name="fname" dirname="fname.dir">
  <input type="submit" value="Submit">
</form>
Try it Yourself »

Textarea Example

An HTML form where the field's text direction will be submitted:

<form action="/action_page.php">
  Text:
  <textarea name="explanation" dirname="explanation.dir"></textarea>
  <input type="submit" value="Submit">
</form>
Try it Yourself »

Browser Support

The dirname attribute has the following browser support for each element:

Element
input Yes No No Yes Yes
textarea Yes No No Yes Yes