woss

Untitled

Aug 2nd, 2011
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. $('cadastrar').click(function(){
  4.  
  5. // Pega os valores do formulário:
  6.  
  7. var nome = $('#nome').val();
  8. var email = $('#email').val();
  9.  
  10. // Enviando os dados
  11. $.post('enviar2.php', {'nome': nome, 'email': email}, function(data){ $('#resultado').text(data) } );
  12.  
  13. });
  14.  
  15. });
Add Comment
Please, Sign In to add comment