The Freshchat widget, also known as the conversations widget, is used to deliver a convenient and contextual conversational messaging experience for customers. If you want to open it on the load of the website please add the below code under 


Note: To find the tracking code that you need to include before the  tag of the web pages you want to integrate, navigate to Admin > Admin Settings > CRM Tracking Code > Integrate your website > Copy



If you want to open it on a load of the website please add the below code under 


<script>
  window.fcWidgetMessengerConfig = {
    open: true,
      }
</script>

<script src='//fw-cdn.com/1*****7/2*****4.js' chat='true'></script>


If you want the widget to open in x seconds, then make use of the following code,


<script>
var timeInMillis = 5000;
setTimeout(function() {
	 window.fcWidgetMessengerConfig = { 
open: true,
      }
	
},timeInMillis);
</script>
<script src='//fw-cdn.com/1*****7/2*****4.js' chat='true'></script>