Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. $(".forms").each(function () {
  2. $copii = $(this).children();
  3. $title =$copii[0].value;
  4. $description=$copii[1].value;
  5. console.log(' ',$title,' ',$description);
  6. $.ajax({
  7. type: "POST",
  8. url: "saveNews.php",
  9. data:{title:$title,description:$description}
  10. });
  11.  
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement