I have a div with the className mic-button
, it is a dynamically appended element. I want to listen for change in it’s classList
, like, I want to trigger function foo()
when any class is added or removed from the element. I prefer to use Vanilla Js. I searched in internet, and i only got solution with JQUERY
.
Thanks, Rob Wilson
Advertisement
Answer
I’m pretty sure there is no event for this, but maybe you can check every second for changes in the ClassName.
Like this:
JavaScript
x
9
1
var current = "mic-button";
2
window.setInterval(() => {
3
var classN = document.querySelector(".mic-button").className;
4
if (classN != current) {foo(); current = classN;}
5
}, 1000);
6
7
function foo() {
8
console.log("foo");
9
}
JavaScript
1
3
1
<button class="mic-button">Mic-button</button><br />
2
<button onclick="document.querySelector('.mic-button').classList.add('foo');">add class</button><br />
3
<button onclick="document.querySelector('.mic-button').classList.remove('foo');">remove class</button>