Eddy — EdFlik Website Assistant

This is a local test harness. Click the chat bubble in the bottom-left to talk to Eddy, exactly as a visitor would on edflik.com.

Embedding on edflik.com

Add this single line before the closing </body> tag:

<script src="https://YOUR-EDDY-HOST/embed.js" async></script>

Linking the “Book a free trial” button to your form

Tell Eddy how your existing floating form opens by defining window.EddyConfig before loading the script. Use whichever one matches your site:

<script>
  // Option A — click your existing trigger element:
  window.EddyConfig = { bookingTrigger: "#book-free-trial-btn" };

  // Option B — call your own function:
  // window.EddyConfig = { onBookTrial: function () { window.openTrialForm(); } };

  // Option C — fallback: open a URL:
  // window.EddyConfig = { bookingUrl: "https://edflik.com/book-a-demo" };
</script>
<script src="https://YOUR-EDDY-HOST/embed.js" async></script>