Well,Ihaveaproblemwiththismodal,itopensassoonasIentertheindex.php,butincaseIchangethepagetoextoduvidas.phpandclicktogobacktoindex.phpthealertappearsagain,forthealertonlyappearsonceandonlyappearsdnvifthepersonclosethetab?
code:
<script>functionfechaAviso(){document.querySelector("#tela").style.display = "none";
// jquery abaixo
//$("#tela").hide();
}
</script>
html:
<div id="tela">
<div id="aviso">
<h2>ATENÇÃO</h2>
<p>ESTE SITE (ELOJOBMAX.COM.BR) NÃO POSSUI QUALQUER TIPO DE VÍNCULO E/OU AGREGAÇÃO COM A RIOT GAMES E SUAS MARCAS, BEM COMO SEUS RESPECTIVOS WEBSITES.</p>
<input class="btleave"type="button" value="SAIR DO SITE" onclick="fechaAviso()" />
<input class="btjoin" type="button" value="ESTOU CIENTE E CONCORDO" onclick="fechaAviso()" />
</div>
</div>