Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const audio = new Audio('https://www.myinstants.com/media/sounds/woo_htcxajK.mp3');
- const observer = new MutationObserver(function(mutations) {
- if (mutations[0].target.className === "countdown__value") {
- audio.play();
- }
- });
- observer.observe(document.getElementsByTagName("body")[0], {childList: true, subtree:true});
Advertisement
Add Comment
Please, Sign In to add comment