Ir para o conteúdo
(function () {
function preencherURL(raiz) {
var alvo = (raiz || document).querySelectorAll('input[name="form_fields[url]"]');
alvo.forEach(function (campo) {
campo.value = window.location.href;
});
}
document.addEventListener('DOMContentLoaded', function () {
preencherURL(document);
});
document.addEventListener('submit', function (e) {
preencherURL(e.target);
}, true);
document.addEventListener('elementor/popup/show', function () {
setTimeout(function () { preencherURL(document); }, 300);
});
})();