29 lines
729 B
JavaScript
29 lines
729 B
JavaScript
|
|
// form com os banner residencial
|
||
|
|
document.addEventListener("click", function (e) {
|
||
|
|
const planoMap = {
|
||
|
|
"btn-plano-100-mega": "100-mega",
|
||
|
|
"btn-plano-200-mega": "200-mega",
|
||
|
|
"btn-plano-500-mega": "500-mega",
|
||
|
|
"btn-plano-700-mega": "700-mega",
|
||
|
|
"btn-plano-1-gb": "1-gb",
|
||
|
|
};
|
||
|
|
|
||
|
|
const btn = e.target.closest("a[id^='btn-plano-']");
|
||
|
|
if (!btn) return;
|
||
|
|
|
||
|
|
e.preventDefault();
|
||
|
|
|
||
|
|
const plano = planoMap[btn.id];
|
||
|
|
|
||
|
|
// salva no sessionStorage
|
||
|
|
sessionStorage.setItem(
|
||
|
|
"planoSelecionado",
|
||
|
|
JSON.stringify({
|
||
|
|
tipo: "residencial", // aqui você pode adaptar depois pro empresarial
|
||
|
|
plano: plano,
|
||
|
|
})
|
||
|
|
);
|
||
|
|
|
||
|
|
//redireciona
|
||
|
|
window.location.href = "https://bandalarga.srv.br/form-viabilidade/";
|
||
|
|
});
|