91
| <![CDATA[<script type="text/javascript">
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
//ga('create', 'UA-105665407-3', 'auto');
ga('create', 'UA-105842488-1', 'auto');
ga('send', 'pageview');
</script>]]>
|
228
| <![CDATA[<script type='text/javascript'>
$(document).ready(function() {
$("#login_siap").hide();
$("#cpf_cnpj_intermediador").focus();
$("#usuario").keyup(function() {
$(this).val($(this).val().toLocaleUpperCase());
});
$("#cpf_cnpj_intermediador").keydown(function(e) {
if (e.altKey && e.which == 80) { // Permitir Alt+P para entrar automaticamente com o CNPJ da Prefeitura
$(this).val("45226214000119");
$("#cpf_cnpj_intermediador").trigger("blur");
} else if ([67, 86].indexOf(e.which) > -1) { // Permitir Control+C e Control+V
if (!e.ctrlKey) {
e.preventDefault();
}
} else if ([48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 8, 46, 16, 35, 36, 37, 39, 17, 9].indexOf(e.which) == -1) { // Permitir números e teclas de controle. Ex: Tab, Home, End, Setas, Backspace, Delete
e.preventDefault();
}
});
$("#cpf_cnpj_intermediador").blur(function() {
if ($(this).val() == '45226214000119') {
$("#senha_intermediador").prop("disabled", true).hide();
$("#login_siap").show("fast");
$("#usuario").focus();
} else {
$("#senha_intermediador").prop("disabled", false).show();
$("#login_siap").hide("fast");
$("#senha_intermediador").focus();
}
}).popover({
trigger: "manual",
placement: "bottom",
content: "Coloque aqui o DOCUMENTO (CNPJ ou CPF) do responsável por esta escrituração de ITBI, seja cartório, instituição financeira, empresa ou pessoa física. Caso não tenha cadastro e senha na Prefeitura, clique no link abaixo"
}).focus(function() {
$(this).popover("show")
}).blur(function() {
$(this).popover("hide");
}).hover(function() {
$(this).popover("toggle")
});
});
</script>]]>
|