Quickstart

This Quickstart guide will help you get started with our JavaScript chat SDK quickly!

iFlyChat provides its JavaScript SDK which can be used to customize the chat and bind to various chat related events.

You may bind to our init event by using the following code:

window.iflychatAsyncInit = function() {
  
  // All iFlyChat related code should be defined here
  
  /** iFlyChat Init function **/

  iflychat.init({
  
    userlist : {
      visible: true
    }

  });

  /** iFlyChat ready event **/
  iflychat.on('ready', function() {
    
    // Write your custom iFlyChat related code here

  }); 

};

It is fired when the chat starts initializing.

You should be using a premium plan in order to be able to use this feature.

Last updated