How can assign multiple css classes to an html element through javascript without using any libraries?
Try doing this...
document.getElementById("MyElement").className += " MyClass";
Got this here...