function getregion(){ $.ajax({ 'url' : '/region', 'method' : 'GET', 'async' : 'true', 'headers':{ 'Authorization': 'Bearer ' + $('#tokenID').val() }, success: function(response){ $('.headerRegion').html('Mantenimiento SAE '.concat(response)); }, statusCode:{ 500: function(responseError){ console.log('No ha sido posible recuperar la región '.concat(responseError['responseJSON']['error'])); } } }); } function iniciar(){ $('.titPrin').html('Bienvenido'); $('#sender').show(); $('#accInfo').show(); } $('.imgBtn').hover(function(){ if(!$(this).attr('src').includes('desactivado')) $(this).attr('src',$(this).attr('src').replace('.png','_hover.png')); },function(){ if(!$(this).attr('src').includes('desactivado')) $(this).attr('src',$(this).attr('src').replace('_hover.png','.png')); }); var is_nav_open = true; function nav_toogle(){ if(is_nav_open){ document.getElementById("content").style.left = "0px"; document.getElementById("content").style.width= "100%"; document.getElementById("sidenav").style.width = "0px"; } else{ document.getElementById("content").style.left = "120px"; document.getElementById("content").style.width = "calc(100% - 120px)"; document.getElementById("sidenav").style.width = "120px"; } is_nav_open = !is_nav_open; }