I'm by no means an expert. At the company I work for, we are having an external company develop a website for us. We sell a variety of products and would like to create an API to keep everything up to date. I created the API using kimonolabs and that went smoothly and it's fetching the information I want. My question is, how do I get it to show up in divs and other tags so I can style the information. Here is what I've got. I just need to know what to put in the comment section //do something with response.
<script>
$.ajax({
url:"https://www.kimonolabs.com/api/balbvqjq?apikey=AxJK7bN6CCfuHxT46W9WAIHV2PhIrEt4",
crossDomain: true,
dataType: "jsonp",
success: function (result) {
alert('It Works!');
//Do something with the response
},
error: function (xhr, status) {
//handle errors
}
});
</script>
I just need to know the basics to get the ball rolling.