// Create a script element
const script = document.createElement('script');
// Set the source of the script to the provided URL
script.src = "https://chatbox.simplebase.co/projects/65ff1041604c7e2eafce5e91/widget.js";
// Optional: Set attributes like async or defer
script.async = true; // Loads the script asynchronously
// script.defer = true; // Uncomment if you want it deferred instead
// Append the script to the or of the document
document.body.appendChild(script);