javascript how to add style to element code example
Example 1: jquery add style
//revising Ankur's answer
//Syntax:
$(selector).css({property-name:property-value});
//Example:
$('.bodytext').css({'color':'red'});
Example 2: adding styling to element using javascript
var elem = document.querySelector('#some-element');
// Set color to purple
elem.style.color = 'purple';
// Set the background color to a light gray
elem.style.backgroundColor = '#e5e5e5';
// Set the height to 150px
elem.style.height = '150px';