Skip to content

Instantly share code, notes, and snippets.

@juliends
Created November 4, 2020 11:23
Show Gist options
  • Save juliends/684d3bd99a1fa01004b986cc8441cb7b to your computer and use it in GitHub Desktop.
Save juliends/684d3bd99a1fa01004b986cc8441cb7b to your computer and use it in GitHub Desktop.
// Select the button
// const button = document.getElementById('btn');
const button = document.querySelector('#btn');
// Listen to click event
button.addEventListener('click', (event) => {
// Update the btn text - Callback
event.currentTarget.innerText = 'Please wait';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment