Guest User

Untitled

a guest
Jul 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $.ajax({
  2. url: "bin/assign_products.php",
  3. dataType: "json",
  4. data: ({
  5. "export_id": current_export_id,
  6. "product_ids": product_ids_query,
  7. }),
  8. success: function(data) {
  9. // todo: what now?
  10. },
  11. error: function(error, request) {
  12. alert("There was an error: " + error);
  13. },
  14. type: "GET",
  15. });
Add Comment
Please, Sign In to add comment