PHP Classes

File: resources/views/clients/cep.blade.php

Recommend this page to a friend!
  Classes of adriano123456   Budget System   resources/views/clients/cep.blade.php   Download  
File: resources/views/clients/cep.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Budget System
Elaborate budgets for purchases of products
Author: By
Last change:
Date: 15 days ago
Size: 870 bytes
 

Contents

Class file image Download
<script>

function consultaCep(value)
{
    var cep = $("#cep").val();

    if(cep.length < 8){
        alert('Insira um CEP válido!');
        return false;
    }

    $.ajax({
        url : "http://cep.republicavirtual.com.br/web_cep.php",
        type : 'post',
        data : {
            cep : cep,
            formato :'json'
        },
        beforeSend : function(){
            $('a#a_cep').text('...');
        }
    })
    .done(function(msg){
        $('a#a_cep').text('Auto completar');
        $("#bairro").val(msg.bairro);
        $("#cidade").val(msg.cidade);
        $("#estado").val(msg.uf).change();
        $("#endereco").val(msg.logradouro);
        $("#numero").focus();
    })
    .fail(function(jqXHR, textStatus, msg){
        alert('Endereço não encontrado!');
        console.log('error');
        console.log(msg);
    });

}

</script>