Skip to content

Instantly share code, notes, and snippets.

@dantetesta
Last active May 25, 2022 12:04
Show Gist options
  • Save dantetesta/d6be3a0623137947c1eac63a7bc0da3b to your computer and use it in GitHub Desktop.
Save dantetesta/d6be3a0623137947c1eac63a7bc0da3b to your computer and use it in GitHub Desktop.
/*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