327
| <![CDATA[<div class="accordion textbox" style="position: relative;top: 100px;left: 230px;width: 260px;">
<div>
<h3><a href="#">Consulta validade CND</a></h3>
<div>
<table border="0">
<tr>
<td style="text-align: left">
Nº/ANO CND*:
<br>
<input type="text" name="numero" value="" class="leftmenuLink" size="15" maxlength="22" />/<input type="text" name="ano" value="" class="leftmenuLink" size="8" maxlength="22" />
</td>
</tr>
<tr>
<td style="text-align: left">
Chave de controle*:<br>
<input type="text" name="chave" value="" class="leftmenuLink" maxlength="30" style="width: 187px" />
</td>
</tr>
<tr>
<td>
<input type="submit" name="submit" class="newsBox" value="Pesquisar" />
<input type="button" name="limpar" class="newsBox" id="limpar" value="Limpar" />
</td>
</tr>
</table>
</div>
</div>
</div>]]>
|
335
| <![CDATA[<td style="text-align: left">
Nº/ANO CND*:
<br>
<input type="text" name="numero" value="" class="leftmenuLink" size="15" maxlength="22" />/<input type="text" name="ano" value="" class="leftmenuLink" size="8" maxlength="22" />
</td>]]>
|
345
| <![CDATA[<td style="text-align: left">
Chave de controle*:<br>
<input type="text" name="chave" value="" class="leftmenuLink" maxlength="30" style="width: 187px" />
</td>]]>
|
347
| <![CDATA[<input type="text" name="chave" value="" class="leftmenuLink" maxlength="30" style="width: 187px" />]]>
|
374
| <![CDATA[<a href="http://www.publica.inf.br/" target="_blank" style="color: white; text-align: left; float: left; margin-left: 2px; margin-top: 4px;">
Desenvolvido por Pública
</a>]]>
|
378
| <![CDATA[<div style="color: white; text-align: right; float: right; margin-top: 4px;">
04.00.80.0000
</div>]]>
|
69
| <![CDATA[<script type="text/JavaScript">
$(function() {
//Responsável por desabilitar o botão que submitou o formulário (para evitar duplo clique)
$('.form-disable').on('submit', function(){
var self = $(this),
button = self.find('input[type="submit"], button'),
submitValue = button.data('submit-value');
button.attr('disabled','disabled').val((submitValue) ? submitValue : "Aguarde...");
});
$('.clearAllField').click(function(){
var id_form = $(this).closest('form').attr('id')
if (id_form !== null && id_form !== '') {
$('#' + id_form )[0].reset();
}
});
$(".accordion").accordion({ header: "h3", autoHeight: false });
$(".price").autoNumeric('init', {vMin: '0', wEmpty: 'zero', mDec: '2', aSep: '.', aDec: ',' });
$(".price").focus(function() {$(this).select();});
$(".price4").autoNumeric('init', {vMin: '0', wEmpty: 'zero', mDec: '4', aSep: '.', aDec: ',' });
$(".price4").focus(function() {$(this).select();});
$(".number").numberFormat();
$(".number").focusout(function() {
$(".number").numberFormat();
});
$('.spinner').spinner();
$(".date").datepicker();
$(".date").mask("99/99/9999");
$('.date').change(function() {
$(this).unmask();
$(this).mask("99/99/9999");
if ($(this).val() != "") {
if (!isDateValid($(this).val())) {
alert("Data inválida.");
$(this).val("");
}
}
});
$(".cep").mask("99.999-999");
$(".tabs").tabs();
$('.tableDados tbody tr:odd').addClass('zebraUm');
$('.tableDados tbody tr:even').addClass('zebraDois');
$('.cnpjcpf').attr("maxlength", 18);
$('.cnpjcpf').attr("title", "Informar apenas números");
$('.cnpjcpf').focus(function() {
$(this).unmask();
});
$('.cnpjcpf').keyup(function() {
$(this).val(removeInvalido($(this).val()));
});
$('.cnpjcpf').blur(function() {
$(this).unmask();
$('.mensagem-alerta-cpf-cnpj-invalido').text("");
if (removeInvalido($(this).val()).length == 11) {
$(this).mask("999.999.999-99");
} else if (removeInvalido($(this).val()).length == 14) {
$(this).mask("99.999.999/9999-99");
} else if (removeInvalido($(this).val()).length > 0) {
$('.mensagem-alerta-cpf-cnpj-invalido').text("CPF/CNPJ está inválido.");
}
});
$('.fancybox').fancybox({
'width' : 880
});
$('.voltar').click(function() {
history.back()
});
function removeInvalido(cnpjcpf) {
return cnpjcpf.replace(/\D/g, '')
}
//Usar este padão
$('.tooltip_msg').qtip({
position: {
target: 'mouse', // Track the mouse as the positioning target
viewport: $(window),
adjust: {
x: 5,
y: 5,
method: 'flip flip'
}
}
});
//Não usar mais. Usar tooltip_msg
$('.msgLeft').qtip({
position: {
target: 'mouse', // Track the mouse as the positioning target
viewport: $(window),
adjust: {
x: 5,
y: 5,
method: 'flip flip'
}
}
});
//Não usar mais. Usar tooltip_msg
$('.msgRight').qtip({
position: {
target: 'mouse', // Track the mouse as the positioning target
viewport: $(window),
adjust: {
x: 5,
y: 5,
method: 'flip flip'
}
}
});
$("#sortable").sortable();
$("#sortable").disableSelection();
$('select[multiple]').multiselect({
placeholder: 'Selecione uma opção'
});
});
</script>]]>
|
224
| <![CDATA[<script language="JavaScript" type="text/JavaScript">
function valida_tecla() {
if (event.keyCode == 8) {
document.forms[1].cpf.value = "ZZ";
return false;
}
}
function mascara_cpf(campo) {
var mycpf = '';
mycpf = mycpf + campo.value;
if (mycpf.length == 3) {
mycpf = mycpf + '.';
campo.value = mycpf;
} else {
if (mycpf.length == 7) {
mycpf = mycpf + '.';
campo.value = mycpf;
} else {
if (mycpf.length == 11) {
mycpf = mycpf + '-';
campo.value = mycpf;
} else {
if (mycpf.length == 15) {
mycpf =
mycpf.substring(0, 2) + '.' + mycpf.substring(2, 3) + mycpf.substring(4, 6) + '.' + mycpf.substring(6, 7) + mycpf.substring(8, 10) +
'/' + mycpf.substring(10, 11) + mycpf.substring(12, 15) + '-';
campo.value = mycpf;
} else {
if (mycpf.length >= 19) {
mycpf = mycpf.substring(0, 18);
campo.value = mycpf;
}
}
}
}
}
}
</script>]]>
|
0
| Não há código fonte a ser exibido.
|