Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.klyme.io/llms.txt

Use this file to discover all available pages before exploring further.

If you would like to know when the Klyme Widget is opened or if the user has closed it, you can use JavaScript event listeners.

Opening the Klyme Widget

window.addEventListener("message", (e) => {
  if (e.data.event == "opened") {
    console.log(e.data);
  }
});

Closing the Klyme Widget

window.addEventListener("message", (e) => {
  if (e.data.event == "closed") {
    console.log(e.data);
  }
});