Skip to content

Instantly share code, notes, and snippets.

@drFabio
Created November 18, 2017 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drFabio/8cebb3d63afa5c294962fb5ef17492a0 to your computer and use it in GitHub Desktop.
Save drFabio/8cebb3d63afa5c294962fb5ef17492a0 to your computer and use it in GitHub Desktop.
function enableButton () {
document.getElementById('sendButton').disabled = false
document.getElementById('sendButton').innerHTML = 'Enviar'
}
function idleButton () {
document.getElementById('sendButton').disabled = true
document.getElementById('sendButton').innerHTML = 'Enviando...'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment