Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. $(function(){
  2. debuga = $('.resposta');
  3. enviar = $('form[name="cadastro"]');
  4. action = 'php/php1.php';
  5.  
  6.  
  7. enviar.submit(function(){
  8. var nome = $('input[name="nome"]').val();
  9. var mail = $('input[name="email"]').val();
  10.  
  11. $.post(action,{nome: nome, email: mail},function( valores ){
  12. alert(valores);
  13. });
  14.  
  15. return false;
  16. });
  17.  
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement