getTaskErrors(); function getTaskErrors() { $.ajax({ url: "login/?method=taskError" }).done(function(response) { if(!$.isEmptyObject(response)) { $('#tareaErrorNombres').text(response.join(', ')); $('#div_tareaErrorMessage').show(); } }).fail(function() { $('#div_problema_refresh').html('

Se produjo un problema al intentar actualizar los datos. Por favor reinicie el browser.

'); $('#div_problema_refresh').show(); }); } $('[type=password]').keypress(function(e) { var $password = $(this), tooltipVisible = $('.tooltip').is(':visible'), s = String.fromCharCode(e.which); if ( s.toUpperCase() === s && s.toLowerCase() !== s && !e.shiftKey ) { if (!tooltipVisible) $password.tooltip('show'); } else { if (tooltipVisible) $password.tooltip('hide'); } //Hide the tooltip when moving away from the password field $password.blur(function(e) { $password.tooltip('hide'); }); });