Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.



Get Started Now!

JavaScript DOM(Document Object Model)

DOM is such a technology with the help of which we can completely control any html document with JavaScript.

With the help of DOM we can access and change any tag, id, class or any attribute, even we can change any CSS style from DOM.

METHODS

getElementById()

getElementsByclassName()

getElementsByTagsName()

querySelector()

querySelectorALL()

first have to make HTML, CSS and JavaScript files(HTML, CSS source code down there )

HTML source code:-

https://gist.github.com/AvinashKumar33/7d3f01e81b510279354e5a86e5fdec04

CSS source code:-

*{
        margin: 0;
        padding: 0;

}
body{
    font-family: Arial, Helvetica, sans-serif;
}
header{
    background-color: rgb(11, 241, 187);
    color: white;
    padding: 15px 0px 20px 40px;
}
h2#header-title{
    padding: 10px 0px;

}
div#content{
    padding: 15px 0px 0px 45px;
}
div#content >h2{
    border-bottom: 5px solid rgb(37, 37, 33);
    padding: 0px 20px 10px 5px;
    display: inline-block;
    width: 50%;
}
li.list-item{
    border-bottom: 1px solid grey;
    padding: 10px 0px;
}
form{
    padding-top: 20px;

}
form > input, button{
    padding: 5px;
}

OUTPUT

Example: Here we change (Name with ‘Earth‘) by the help of getElementById().

var headerTitle = 
document.getElementById('header-title');

headerTitle.textContent = 'Earth'; 

Example: Here we do styling with the help of JavaScript

var headerTitle = 
document.getElementById('header-title');

headerTitle.textContent = 'Computer courses';
var header = document.getElementById('header');

header.style.borderBottom = '10px solid #000';

OUTPUT

Example: Here we doing changes in list-item value by help of getElementsByclassName()

var items = 
document.getElementsByClassName('list-item');

items[1].textContent = 'Russia';

OUTPUT

Example: Here we using .getElementsByClassName() and changing in style in particular class element.

var items = 
document.getElementsByClassName('list-item');

items[1].textContent = 'Russia';
items[2].textContent = 'Indonesia';
items[3].textContent = 'Egypt';
items[2].style.fontWeight = 'bold';
items[3].style.color = 'red';
items[2].style.backgroundColor = 'yellow'; 

Example: Here we using .querySelector to change color of ID tagline.

var headline = document.querySelector('#tagline');
headline.style.color = 'red';

Related Posts

Error in Laravel:”Invalid Key Supplied”

while trying to log in to your Laravel application, don’t worry. This issue is commonly related to misconfigured or missing keys for Laravel Passport’s OAuth2 authentication system….

Error in Laravel “Davmixcool\MetaManager\MetaServiceProvider Not Found”

When working on Laravel projects, developers often encounter errors during the setup or runtime process. One such error is the “Class ‘Davmixcool\MetaManager\MetaServiceProvider’ not found”, which can occur…

Discover Rewa Effortlessly with Motoshare’s Convenient Bike and Car Rentals

Rewa, the “Land of White Tigers,” offers a unique blend of historical, cultural, and natural attractions that captivate every traveler. To make exploring this charming city more…

Discover Shimoga (Shivamogga) Effortlessly with Motoshare’s Bike and Car Rentals

Nestled in the lush greenery of Karnataka, Shimoga (Shivamogga) is a haven for nature lovers and history enthusiasts. From the roaring Jog Falls to the tranquil forests…

Explore the Spiritual Charm of Mathura with Motoshare’s New Bike and Car Rental Services

Mathura, the birthplace of Lord Krishna, is a city brimming with spirituality, vibrant culture, and historical significance. To make your journey through this sacred city seamless, Motoshare…

Explore Nizamabad Effortlessly with Motoshare’s New Bike and Car Rental Services

Nizamabad, known for its historical monuments, serene landscapes, and rich cultural heritage, is now easier to explore with Motoshare’s newly launched bike and car rental services. Whether…

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x