I get the error "Uncaught ReferenceError: Konduto is not defined" when calling JavaScript

This error occurs when the method is not yet loaded in the memory of the browser. Our JavaScript is inserted asynchronously, after the site is fully loaded and ready. It is usually one of the last scripts to run, purposefully, so as to not influence the navigation speed of the website.

For this reason, it is possible that you are calling one of the methods before our JavaScript has been fully loaded, thus generating the error. We recommend placing a setInterval in your script to test for the presence of the Konduto object.

This article contains examples of how to make this implementation.