Guest User

Untitled

a guest
Jun 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. $('#listaEmails input').each(function(i,item)){
  2. $.ajax({
  3. url: "test.html",
  4. cache: false,
  5. data: {
  6. 'valor' : $(item).val(),
  7. 'nome' : $(item).attr('name')
  8. },
  9. success: function(html){
  10. alert(html);
  11. },
  12. error: function(){
  13. alert("erro!");
  14. }
  15. });
  16. });
Add Comment
Please, Sign In to add comment