// Create a script element
var script = document.createElement('script');
script.src = 'https://cdn.commoninja.com/sdk/latest/commonninja.js';
script.defer = true; // Set the defer attribute
// Create a div element
var div = document.createElement('div');
div.className = 'commonninja_component pid-cabd3a81-9df5-4110-bf27-947871421794';
// Append the script and div to the body (or another container)
document.body.appendChild(script);
document.body.appendChild(div);