Answers for "how to - add active class to current element https://www.w3schools.com/howto/howto_js_active_element.asp"

0

how to add active class to current element javascript

<script>
  function func(){
   document.getElementById('div').classList.add('active');
  }
</script>

<button onclick='func()'>Click</button>
<div id="div">
  This element gets 'active' class.
</div>
Posted by: Guest on June-16-2021

Code answers related to "how to - add active class to current element https://www.w3schools.com/howto/howto_js_active_element.asp"

Browse Popular Code Answers by Language