Skip to content
Advertisement

How to select all children of an element with javascript and change CSS property?

I am working on a project that has a div with 32 children. I need to create a dropdown menu that will change the background of each div and the parent. For the other parts of the project that don’t have children, I have been using the following code:

JavaScript

HTML:

JavaScript

I could just add a different ID to each child (id1,id2,id3,…), but there are 32 children and not only would I have to add 32 IDs, but also 32 lines of Javascript. There has to be a better way; somehow selecting children or even changing the actual CSS code that selects the children.

Thanks, Ian

Advertisement

Answer

While this can be done in one line with JQuery, I am assuming you are not using JQuery – in which case, your code will be:

JavaScript

See http://jsfiddle.net/SxPxN/ for a quick example I created – Click on “change ’em” to see it in action

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement