Last active
May 25, 2022 12:04
-
-
Save dantetesta/d6be3a0623137947c1eac63a7bc0da3b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*BY: ASK JARVIS + DANTE TESTA */ | |
<script> | |
const addToCartButtons = document.querySelectorAll('.add_to_cart_button'); | |
addToCartButtons.forEach(button => { | |
button.addEventListener('click', () => { | |
button.innerText = 'Adicionado'; | |
button.style.backgroundColor = 'green'; | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment