37
| <![CDATA[<script>
$(function(){
$('.link-rodape, .nav-link, .atalho').click(function()
{
var pagina = $(this).attr('href');
var alvo = $(this).attr('target');
var id = $(this).attr('id');
var texto = $(this).text();
if (pagina != '#') {
if(alvo == "_iframe") {
var active = $(".nav-item.active");
var tituloPagina = texto.charAt(0).toUpperCase() + texto.slice(1) + " :: ";
$(document).attr("title", tituloPagina + " E-SIC - Serviço de Informação ao Cidadão");
if(active.length > 0){
active.removeClass("active");
$(this).parents("li.nav-item").addClass("active");
}
$(".conteudo").load(pagina,
{ url : pagina, titulo : texto, idItem : id, _target : alvo },
function( response, status, xhr ) {
if ( status == "error" ) {
var msg = "Ocorreu um erro durante a requisição da página: ";
$( ".conteudo" ).html("<div class='erro'>" + msg + xhr.status + " " + xhr.statusText + "</div>" );
}
});
$('.volta-topo').click();
return false;
}
}
});
});
</script>]]>
|