Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function noCustomerPoll(){
  2. $(function() {
  3. $("form[action='account/login']").submit(function(event){
  4. event.preventDefault();
  5. if(products.length != 0){
  6. $.ajax({
  7. url: "/apps/proxy/customer",
  8. data: {products},
  9. type: "GET",
  10. dataType: "json",
  11. complete: function(data) {
  12. window.location.replace(data.responseText);
  13. },
  14. });
  15. }
  16. });
  17. });
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement