JSFiddle - React, Tailwind, and code Playground
HTML
<a id="botao-chat" href="#">ABRIR CHAT</a>
JavaScript
var aberto = false;
$('#botao-chat').click(function() {
if(aberto) {
$(this).text('ABRIR CHAT');
$zopim.livechat.window.hide();
} else {
$(this).text('FECHAR CHAT');
$zopim.livechat.window.show();
}
aberto = !aberto;
return false;
});