Skip to content

Instantly share code, notes, and snippets.

@augustogoulart
Created June 1, 2017 20:22
Show Gist options
  • Save augustogoulart/8dff0aac8caf466485c0e4d67457fa74 to your computer and use it in GitHub Desktop.
Save augustogoulart/8dff0aac8caf466485c0e4d67457fa74 to your computer and use it in GitHub Desktop.
Ajax call to meetup API
$('.btn').click(function () {
$('.text').text('loading...');
$.ajax({
type:"GET",
url:"https://api.meetup.com/2/cities",
success: function (data) {
$('.text').html('');
for(var i=0;i < data.results.length;i++){
var place = data.results[i].city
$('.text').append('<p>'+place+'</p>');
}
},
dataType: 'jsonp'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment