how to add a class name to an element that has a class name already with javaScript code example
Example: add class to html tag javascript
var root = document.getElementsByTagName( 'html' )[0]; // '0' to assign the first (and only `HTML` tag)
root.className += ' responsive';