Skip to content

Instantly share code, notes, and snippets.

@sidneycalebe
Last active July 28, 2021 16:08
Show Gist options
  • Save sidneycalebe/e55ab4d65f0399bf11ee10f1756299ee to your computer and use it in GitHub Desktop.
Save sidneycalebe/e55ab4d65f0399bf11ee10f1756299ee to your computer and use it in GitHub Desktop.
function showHideAlternativeButton(status) {
var chat = document.getElementById('button-chat')
if (status === 'show') {
chat.style.display = 'block'
}
if (status === 'hide') {
chat.style.display = 'none'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment