Answers for "attach class to element with class js"

3

addclass js vanilla

element.classList.add('className');
Posted by: Guest on January-10-2021
0

getelementsbyclassname add class

.newclassname {   border: 16px solid black; /* Light grey */
  border-top: 16px solid black; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite; }
  @keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
Posted by: Guest on April-07-2021

Code answers related to "attach class to element with class js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language