Other Div
Other Div
var buttons = document.body.getElementsByTagName('button'); for(var x = 0; x < buttons.length; x++) { buttons[x].onclick = function() { this.previousSibling.style.backgroundColor = '#3a6d90'; } } ​