$(document).ready(function() { jQuery('#cpf-res').change(verifyCpfExists); jQuery('#cpf-ter').change(verifyCpfExists); }); function verifyCpfExists() { jQuery.ajax({ type:"GET", url:'/termoAdesao/verifyCpfExists', dataType:"json", data:{ cpf_resp : $("#cpf-res").val(), cpf_ter : $("#cpf-ter").val() }, success: function(rs) { if(rs.success) { $("#cpf-res").val(""); $("#cpf-ter").val(""); var msg = 'Alerta

'; msg += '

O usuário de CPF ' + rs.cpf +' já está vinculado a solicitação do CNPJ ' + rs.cnpj + ' ' + rs.orgao +'


'; msg += '

Em caso de dúvida:

'; msg += '

Atendimento telefônico: 0800 978 9001

'; msg += '

Plataforma de Atendimento: https://portaldeservicos.economia.gov.br

'; createFlashMesseger(msg, "#flashMensager", false); } } }); }