Advertisement
Guest User

Untitled

a guest
Aug 12th, 2014
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.31 KB | None | 0 0
  1.    // Abrir e Fechar o CHAT
  2.     var aberto = false;
  3. $('#botao-chat').click(function() {
  4. if(aberto) {
  5.     $(this).text('ABRIR CHAT');
  6.     $('div.zopim').css("margin-bottom", "0");
  7. } else {
  8.     $(this).text('FECHAR CHAT');
  9.     $('div.zopim').css("margin-bottom", "50px");
  10. }
  11. aberto = !aberto;
  12. return false;
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement