Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

typescript add class to element

const box = document.getElementById('box');

if (box != null) {
  // ✅ Add class
  box.classList.add('bg-yellow');
 
PREVIOUS NEXT
Tagged: #typescript #add #class #element
ADD COMMENT
Topic
Name
7+1 =