The DOM Bdo Object is used to represent the HTML <Bdo> element. The Bidirectional element is accessed by getElementById().
Properties: It has a dir attribute which is used to set or return the text direction of an element.
Syntax:
document.getElementById("GFG");
Where “GFG” is the ID assigned to the “bdo” tag.
Example 1: In this example, we will use DOM Bdo Object.
HTML
<!DOCTYPE html>
< html >
< head >
< style >
h1 {
color: green;
}
h2 {
font-size: 35px;
}
</ style >
</ head >
< body >
< h1 >GeeksForGeeks</ h1 >
< h2 >DOM Bdo Object</ h2 >
< bdo id = "GFG" dir = "rtl" >
A Computer science portal for geeks
</ bdo >
< br >
< button onclick = "myGeeks()" >Submit</ button >
< p id = "sudo" ></ p >
< script >
function myGeeks() {
let w = document.getElementById("GFG");
if (w.dir === "rtl") {
document.getElementById("sudo").innerHTML =
"right to left text direction";
} else {
document.getElementById("sudo").innerHTML =
" left to right text direction.";
}
}
</ script >
</ body >
</ html >
|
Output:
Example 2: Bdo Object can be created by using the “document.createElement method.
HTML
<!DOCTYPE html>
< html >
< head >
< style >
h1 {
color: green;
}
h2 {
font-size: 35px;
}
</ style >
</ head >
< body >
< h1 >GeeksForGeeks</ h1 >
< h2 >DOM Bdo Object</ h2 >
< button onclick = "myGeeks()" >Submit</ button >
< script >
function myGeeks() {
let g = document.createElement("BDO");
let f = document.createTextNode("GeeksForGeeks.");
g.setAttribute("dir", "rtl");
g.appendChild(f);
document.body.appendChild(g);
}
</ script >
</ body >
</ html >
|
Output:
Supported Browsers: The browser supported by DOM Bdo Object are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
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 :
15 Jun, 2023
Like Article
Save Article