HTML DOM Bdo Object
- Previous Page <base>
- Next Page <blockquote>
Bdo Object
The Bdo object represents the HTML <bdo> element.
Access Bdo Object
You can use getElementById() to access the <bdo> element:
var x = document.getElementById("myBdo");
Create Bdo Object
You can use the document.createElement() method to create a <bdo> element:
var x = document.createElement("BDO");
Bdo Object Properties
Properties | Description |
---|---|
dir | Sets or returns the value of the dir attribute of the <bdo> element. |
Standard Attributes and Events
Bdo Object Supports StandardsPropertiesAndEvents.
Related Pages
HTML Reference Manual:HTML <bdo> Tag
- Previous Page <base>
- Next Page <blockquote>