How shall change background color for below css using jquery
When tried using this it show me error of undefined
var element = document.getElementsByClassName('Title');
element.style.background = '#FF00AA';
Uncaught TypeError: Cannot set properties of undefined (setting 'background')
.orgchart .node .title {
position: relative!important;
text-align: center!important;
font-size: 12px!important;
font-weight: bold!important;
height: 20px!important;
line-height: 20px!important;
overflow: hidden!important;
text-overflow: ellipsis!important;
white-space: nowrap!important;
background-color: #eb3c96!important;
color: #fff!important;
border-radius: 4px 4px 0 0!important;
font-family: Calibri !important;
width: 185px!important;
}