Answer the question
In order to leave comments, you need to log in
How to add css class to an element?
There is a div with already existing css class "list"
<div class="list">
..text..
</div>
<div class="list vote">
..text..
</div>
Answer the question
In order to leave comments, you need to log in
native js:
let list = document.querySelector('.list');
list.classList += ' vote';
$(".list").addClass("vote");
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question