Listening for events

You can hook into the Birdie callback named onBirdieAction, which will provide you with some events during a co-browsing session. To register this callback, use the birdieSettings object you are already using to identify your customer (see Snippet installation section), as demonstrated in the example below:

window.myBirdieCallback = function(event) { 
	// your own code here…
	// console.log("myBirdieCallback event is:", event) 
}

window.birdieSettings={
  onBirdieAction: myBirdieCallback,
};

List of events

Last updated