Hi! The resume submission widget that I created does not open on the first mouse click, only on the second click. Could you please advise? Thank you!
One more detail: itโs embedded into the durable website. could you please advise? Thank you!
Hi @svetvet ,can you kindly share a link to the page on your website so we can see the issue live?
Itโs the careers page at www.outsampler.com
Please let me know how to fix it! Thank you!
@svetvet Thank you for sharing the link, We will review it and update you
@svetvet please try loading our script dynamically on the page. Hereโs how you can do that:
window.addEventListener(โDOMContentLoadedโ, function() {
var script = document.createElement(โscriptโ);
script.src = โhttps://cdn.commoninja.com/sdk/latest/commonninja.jsโ; // Common Ninja script URL
script.async = true;
document.head.appendChild(script);
});
This method ensures that the script is added after the page has finished loading, which can help prevent conflicts or loading issues.