Guest User

Untitled

a guest
Aug 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Form serialize for an array in a form
  2. <input type="text" name="products[]" />
  3.  
  4. var products = $('#orderDetsForm').serialize();
  5. eve.preventDefault();
  6. $.ajax({
  7. type: "POST",
  8. url: "/orders/index.php/processOrder/addOrderDets",
  9. data: {dets: products},
  10. success: function(data){
  11. $("#productList").html(data);
Add Comment
Please, Sign In to add comment