Link to home
Start Free TrialLog in
Avatar of RayT
RayTFlag for United States of America

asked on

Best Buy Remix API using JQuery

I've created the following code, but now I need to show the results.  How do I do that?

    var apiKey = "zy5hzrxazsfe9f9uyehqpb5c";

    var storeLocation = params.id.split('|');

    var myURL = "http://api.remix.bestbuy.com/v1/stores(area(" + storeLocation[1] + "," + storeLocation[0] + "))?format=json&callback=?&apiKey=" + apiKey;

    $.ajax({
        type: "GET",
        url: myURL,
        cache: true,
        success: function () {
            alert('success');
        },
        dataType: 'json'
    });
ASKER CERTIFIED SOLUTION
Avatar of Big Monty
Big Monty
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of RayT

ASKER

Thanks!