Tagged Questions

6
votes
5answers
688 views

List of All Background Images in DOM

What's the best way to find all of the background images on a given page using javascript? The ideal end result would be an array of all of the url's.
2
votes
3answers
360 views

What is an efficient way to set CSS class for each cell in a given table row?

I have a problem setting the CSS class for each cell in a given table row. Initially I thought setting the parent row CSS would affect the style properties of cells, but that doesn't work. Instead I ...