var analyst_gkey_apikey = "AIzaSyBc38PVkGYHmnjp4iD8N9t06T8bQv-atXQ";var ts = document.currentScript; salt_host = new URL(ts.src).origin; // Check to see if we need jquery var core = salt_host+'/scripts/chat_tool/api_app.php?app_name=analyst_core'; window.onload = function() { if (window.jQuery) { // jQuery is loaded $.getScript(core, function() { run_analyst(); }) }else{ // jQuery is not loaded // Load the script const script = document.createElement("script"); script.src = 'https://code.jquery.com/jquery-3.6.0.min.js'; script.type = 'text/javascript'; script.addEventListener('load', () => { $.getScript(core, function() { run_analyst(); }) }); document.head.appendChild(script); } }