DEV Community

Discussion on: I Need jQuery

Collapse
 
loilo profile image
Florian Reuschel

Btw some native styling hint if you have modern browsers at hand - the following is possible:

Object.assign(element.style, {
  color: 'red',
  fontSize: '24px',
  // and so on
})