Question

Write a function called changeBGColor that changes the background color of all elements which has Class name classColor.
0 0
Add a comment Improve this question Transcribed image text
Answer #1

function changeBGColor(){

// Selecting elemens by Class Name

bgElements = document.getElementsByClassName("classColor");

// When we use class name, A single element is not select instead a object is returned

// Hence we will be looping the element object.

var start;
for (start = 0; start < bgElements.length; start++) {

// Changing background color
bgElements[start].style.backgroundColor = "red";
}

}

Please let me know in the comments if any additions are needed.

Please rate.

Add a comment
Know the answer?
Add Answer to:
Write a function called changeBGColor that changes the background color of all elements which has Class...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT