Install our SDK

Integrate Jimo in your app

Requirements

To install our widget, first, sign in to our dashboard. If you don't have an account, feel free to request access.

Get your snippet code

On the Jimo dashboard, navigate to Settings > Installation > Widget.

Load the snippet on your website

Copy/paste the snippet code and add it to the head section of your website.

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Your website</title>

  <!-- Paste Jimo snippet here -->
  <script>
    (function(j,i,m,o) {
        if (j["jimo"] != null) {
          return;
        }

        var s = document.createElement("script");

        s.type = "text/javascript";
        s.async = true;
        s.src = "https://undercity.usejimo.com/jimo-invader.js";
        
        j['jimo'] = [];
        j['JIMO_PROJECT_ID'] = "YOUR_PROJECT_ID_HERE";

        document.getElementsByTagName("head")[0].appendChild(s);
    })(window);
  </script>

</head>
<body>
  
</body>
</html>

Advance integrations

If you are using a framework, please check the corresponding guide just below

Last updated