186
| <![CDATA[<script type="text/javascript">
function div_controle(chave) {
if (chave==1)
{ document.getElementById('div_principal').style.display = "block";
document.getElementById('div_formulario').style.display = "none"; }
else if (chave==2)
{ document.getElementById('div_formulario').style.display = "block";
document.getElementById('div_principal').style.display = "none"; }
}
function por_motivo(valor) {
document.getElementById('tipo').value = valor;
self.document.getElementById('form_principal').submit();
}
</script>]]>
|
307
| <![CDATA[<script type="text/javascript">div_controle(1)</script>]]>
|
364
| <![CDATA[<script type="text/javascript">
$(document).ready(function() {
$(window).scroll(function() {
if ($(this).scrollTop() > 20) {
$('#toTopBtn').fadeIn();
document.getElementById("toTopBtn").style.display = "flex";
} else {
$('#toTopBtn').fadeOut();
}
});
$('#toTopBtn').click(function() {
$("html, body").animate({
scrollTop: 0
}, 1000);
return false;
});
});
</script>]]>
|