Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. function exibir_ocultar(){
  2. var cpf = document.getElementById('cpf');
  3. var nome = document.getElementById('nome');
  4. var cnpj = document.getElementById('cnpj');
  5. var razao = document.getElementById('razao');
  6. var valor = $("#tipo_pessoa").val();
  7.  
  8. if(valor == 'pessoa_fisica'){
  9. $("#cnpj").hide();
  10. $("#razao").hide();
  11. $("#cpf").show();
  12. $("#nome").show();
  13. } else {
  14. $("#cnpj").show();
  15. $("#razao").show();
  16. $("#cpf").hide();
  17. $("#nome").hide();
  18. }
  19. };
  20.  
  21. var tipo_pessoa = document.getElementById("tipo_pessoa").value;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement