We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I use Cart.js to one of my new project but getting issue when set "selling_plan". After this Callbacks functions not working. below is my code.
CartJS.addItem(att, qty, sellp, props,{},{ "success": function(data, textStatus, jqXHR){ alert('11'); setTimeout(function() { $("body").removeClass("loading showOverly"); //$(".block-cart").addClass("active"); $('.header-cart').trigger('click'); },1000); }, "error": function(jqXHR, textStatus, errorThrown){ alert('22'); var errormsg = JSON.parse(jqXHR.responseText).description; $("body").removeClass("loading"); $(".error-message").text(errormsg); $("body").addClass("showOverly"); $("#errorDrawer").fadeIn(500); drawerTimeout = setTimeout(function(){ $("body").removeClass("loading showOverly"), $("#errorDrawer").fadeOut(200) }, 6000); } });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I use Cart.js to one of my new project but getting issue when set "selling_plan". After this Callbacks functions not working.
below is my code.
The text was updated successfully, but these errors were encountered: