25
| <![CDATA[<script>
$(document).ready(function() {
$('[data-toggle="tooltip"]').tooltip()
$('#s-btn').click((e) => {
e.preventDefault();
let value = $('#s-campo').val();
if (value != '') {
window.location.href = '/noticias/' + value;
} else {
$('#empty-form').removeClass('d-none');
}
$(this).blur();
});
$('#form-s').submit((e) => {
e.preventDefault();
let value = $('#s-campo').val();
if (value != '') {
window.location.href = '/noticias/' + value;
} else {
$('#empty-form').removeClass('d-none');
}
});
});
</script>]]>
|
202
| <![CDATA[<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>]]>
|
209
| <![CDATA[<script>
document.onkeyup=function(e) {
let link = "";
if(e.which == 49) {
link = "http://www.tacaratu.pe.gov.br"
window.location.href = link;
} else if(e.which == 50) {
link = "http://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 = "http://www.tacaratu.pe.gov.br/contato"
window.location.href = link;
}
}
</script>]]>
|
410
| <![CDATA[<script>
$(function() {
$('.btn-group-fab').on('click', '.btn', function() {
window.open('http://www.tacaratu.pe.gov.br/app/chatbot/chat', '_blank', 'location=yes,height=670,width=570,scrollbars=yes,status=yes');
});
$('has-tooltip').tooltip();
});
</script>]]>
|