28
| <![CDATA[<script>
$(document).ready(function() {
$('[data-toggle="tooltip"]').tooltip();
$('#btn-contact').click(function(e) {
e.preventDefault();
let nome = $('#nome').val();
let email = $('#email').val();
let assunto = $('#assunto').val();
let mensagem = $('#mensagem').val();
if (nome != '' && email != '' && assunto != '' && mensagem != '') {
$.ajax({
url: 'https://www.tacaratu.pe.gov.br/api/submit-contact',
method: 'post',
data: {
nome: nome,
email: email,
assunto: assunto,
mensagem: mensagem
}
});
$(this).prop('disabled', true);
$('#feedback-send').removeClass('d-none');
$('#nome').val('');
$('#email').val('');
$('#assunto').val('');
$('#mensagem').val('');
setTimeout(() => {
$('#feedback-send').addClass('d-none');
$(this).prop('disabled', false);
}, 5000)
} else {
$('#empty-form').removeClass('d-none');
setTimeout(() => {
$('#empty-form').addClass('d-none');
$(this).prop('disabled', false);
}, 6000)
}
$(this).blur();
});
});
</script>]]>
|
223
| <![CDATA[<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>]]>
|
230
| <![CDATA[<script>
document.onkeyup=function(e) {
let link = "";
if(e.which == 49) {
link = "https://www.tacaratu.pe.gov.br"
window.location.href = link;
} else if(e.which == 50) {
link = "https://www.tacaratu.pe.gov.br/noticias"
window.location.href = link;
} else if(e.which == 51) {
link = "https://tacaratu.pe.transparenciamunicipal.online/app/pe/tacaratu/1"
window.location.href = link;
} else if(e.which == 52) {
link = "https://www.tacaratu.pe.gov.br/contato"
window.location.href = link;
}
}
</script>]]>
|
449
| <![CDATA[<script>
$(function() {
$('.btn-group-fab').on('click', '.btn', function() {
window.open('https://www.tacaratu.pe.gov.br/app/chatbot/chat', '_blank', 'location=yes,height=670,width=570,scrollbars=yes,status=yes');
});
$('has-tooltip').tooltip();
});
</script>]]>
|