Guest User

Untitled

a guest
May 26th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $(function() {
  2. $('#form').submit(function(){
  3. var cep = $('#cep').attr('value')
  4.  
  5. $.getScript('buscaendereco.php?cep='+cep, function(data){
  6. $('option').val([resultadoCEP.estado])
  7. $('#cidade').val(unescape(resultadoCEP.cidade))
  8. $('#bairro').val(unescape(resultadoCEP.bairro))
  9. $('#endereco').val(unescape(resultadoCEP.logradouro))
  10. })
  11. return false
  12. })
  13. })
Add Comment
Please, Sign In to add comment