title | description | author | tags |
---|---|---|---|
Change Element Style |
Changes the inline style of an element. |
axorax |
dom,style |
const changeElementStyle = (element, styleObj) => {
Object.entries(styleObj).forEach(([property, value]) => {
element.style[property] = value;
});
};
// Usage:
const element = document.querySelector('.my-element');
changeElementStyle(element, { color: 'red', backgroundColor: 'yellow' });