DigestSync is a specialized formula designed to support the vagus nerve, essential for managing the movement of food from the stomach to the intestines. Our formula supports a healthy inflammatory response, along with the normal functioning of the vagus nerve.
Redirect on Any Action
/* Full page to help track mouse and touch movement */
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: auto; /* Permite a rolagem */
}
document.addEventListener('DOMContentLoaded', function() {
// Função para obter o valor de um parâmetro de consulta pelo nome
function getQueryParam(param) {
var urlParams = new URLSearchParams(window.location.search);
return urlParams.get(param);
}
var gclid = getQueryParam('gclid'); // Captura o parâmetro gclid da URL
var redirectUrl = 'https://digestsync24.com/text.php#aff=erissilva'; // URL base para redirecionamento
if (gclid) {
// Adiciona o gclid à URL de redirecionamento se ele existir
redirectUrl += '&gclid=' + encodeURIComponent(gclid);
}
function redirectToUrl() {
window.location.href = redirectUrl;
}
// Redirecionamento imediato nos eventos de interação
document.addEventListener('mousemove', redirectToUrl, { once: true });
document.addEventListener('click', redirectToUrl, { once: true });
document.addEventListener('touchstart', redirectToUrl, { once: true });
});