Home | Basic chat with show on load

Front Chat

Basic chat functionality with buttons to demonstrate "show" on load of page using the Chat API.



Code used on this page:

<script src="https://chat-assets.frontapp.com/v1/chat.bundle.js" onload="initFrontChat()" async></script>
<script>
  function initFrontChat() {
    window.FrontChat('init', {chatId: 'a019c83ab77a570c49500301e65d1297', useDefaultLauncher: true});
    setTimeout(function(){
      window.FrontChat('show');
    }, 1000);
  };
</script>