Girl Develop It is here to provide affordable and accessible programs to learn software through mentorship and hands-on instruction.
Some "rules"
All (good) APIs have documentation
Get an API Key
A what?
We will be using the Meetup API
We will be finding interesting Meetups near us
Try it in the meetup console
Try it in the meetup console
jQuery method to perform an AJAX call
$.ajax({
url: 'http://site.com',
data: {
parameter: 'value',
parameter: 'value'
},
crossDomain: true,
dataType: 'jsonp',
type: "GET",
success: function (data) {
// code with data returned
},
error: function(data) {
// code with error returned
}
});
$.ajax({
url: 'http://site.com',
...
});
...
data: {
parameter: 'value',
parameter: 'value'
},
...
...
crossDomain: true,
dataType: 'jsonp',
type: "GET",
...
...
success: function (data) {
// code with data returned
},
error: function(data) {
// code with error returned
}
...
Still have time? Can't stop learning?
One of the best things about jQuery is the developer community
They love to build!
Check out some great plugins: