FoxyCart API Shipping


/ Published in: jQuery
Save to your folder(s)

This is partial code for calling a custom foxycart shipping request.


Copy this code and paste it in your HTML
  1. //call the api request and pass it all of your necessary paramters, state, address, store_id, etc.
  2. var url = "https://websevenpointo.foxycart.com/v/0.7.0/api_json.php?shipping_state=" + State ...";
  3. $('#result').html("");
  4. $('#divLoading').show();
  5. $.ajax({
  6. url: url,
  7. dataType: 'jsonp',
  8. success: function(j){
  9. GetRatesCallback(j)
  10. }
  11. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.