HTML DOM Bdo Object

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");

Try It Yourself

Create Bdo Object

You can use the document.createElement() method to create a <bdo> element:

var x = document.createElement("BDO");

Try It Yourself

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