Sample customer site

Home loans starting at 8.5%

Apply online in 5 minutes. No collateral upfront. Salaried & self-employed welcome.

↘️ Widget popup demo: The floating chat bubble in the bottom-right opens the bot in a real native browser popup window (not an inline panel). Try it — type "what's the EMI on 50L home loan" or "talk to a human" inside the popup. The host page below shows events received from the popup in real-time.

Try these phrases in the popup

  • "What's the EMI on a 50L home loan for 20 years?"
  • "होम लोन के लिए कौन से दस्तावेज़ चाहिए?" (switch to हिं first)
  • "أحتاج إلى قرض منزل" (switch to عر first — RTL)
  • "I want to talk to a human" — lead-capture form appears mid-conversation
  • "What is your refund policy?" — watch the no-answer policy fire

Events from popup (postMessage)

The popup widget posts events to this host page in real-time — the same way a real customer site would integrate.

No events yet. Open the widget popup and interact with it.

Install snippet (what a real customer pastes)

<script src="https://cdn.conversegrid.example/widget.js"
  data-install="install-local"
  data-position="bottom-right"
  data-mode="popup"
  data-lang="auto"
  async></script>

<!-- Listen for events on the host page -->
<script>
  window.addEventListener("message", (e) => {
    if (e.data?.source === "cg-widget") {
      console.log("[widget]", e.data.type, e.data.payload);
    }
  });
</script>