JSFiddle - React, Tailwind, and code Playground
by mtenschert
JavaScript
$.ajax({
url: "https://skisupport.zendesk.com/api/v2/help_center/en-us/articles.json",
success: function(result) {
console.log(result);
console.log(result.count);
}
});
$.ajax({
url: "https://skisupport.zendesk.com/api/v2/help_center/en-us/articles.json",
success: function(result) {
alert(result.articles);
}
});
$.ajax({
url: 'https://skisupport.zendesk.com/api/v2/help_center/en-us/articles.json',
type: 'GET'
}).done(function(data) {
data.articles.forEach(function(article) {
alert(article.name)
});
});