Let Wufoo do the hard work. Sign up for a free account and start making forms the easy way.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="text" name="foo" dirname="foo.dir"> | |
<input type="submit"> | |
Live Demo
The Low Down
The dirname
attribute enables the submission of the directionality of the form control along with the value of the form control on form submission.
- When the user submits the form, the user agent will include two fields, the name / value pair and the dirname / direction. In the above example, the form will submit
foo=bar&foo.dir=ltr
if we enteredbar
as the value. - If the user manually switches to a right-to-left writing direction and enters something in Arabic, Hebrew or other, the value of
foo.dir
will bertl
. - The
dirname
attribute is only relevant for thetext
andsearch
input types, and for<textarea>
.