woss

Untitled

Aug 2nd, 2011
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.23 KB | None | 0 0
  1. $("#newsletter").submit(function(){
  2.  
  3.    var nome_form = $("#nome").val();
  4.    var email_form = $("#email").val();
  5.  
  6.    $.post('enviar2.php', {nome: nome_form, email: email_form}, function(data){ $("#resultado").text(data) });
  7.  
  8. });
Advertisement
Add Comment
Please, Sign In to add comment