This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// An AJAX query is broken down like this... | |
$.ajax({ | |
// This means we're going to pull data; if you're | |
// creating something new on the server, this'll be POST | |
type: "GET", | |
// This tells jQuery to use a cross-domain fetching trick | |
dataType: "jsonp", | |
// The BASE URL we want to query data from |