Resume submission form does not open on the first click

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.