Manual initialization
Let's see how to initialize Jimo whenever you want
Disable automatic initialization
<script>
window.jimo = [];
(function(j,i,m,o) {
var s = document.createElement("script");
s.type = "text/javascript";
s.async = true;
s.src = "https://undercity.usejimo.com/jimo-invader.js";
j['JIMO_PROJECT_ID'] = "YOUR_PROJECT_ID";
j['JIMO_MANUAL_INIT'] = true; // <- Add this
document.getElementsByTagName("head")[0].appendChild(s);
})(window);
</script>Initialize Jimo
Passing commands before Jimo is initialized
Last updated