JSONP is a workaround to use JSON requests across different domains. As you know browser’s security layer doesn’t allow AJAX request to work outside site’s domain.
JSONP takes advantage of <SCRIPT> (yes, SCRIPT can load data from outside the domain like GA script!) tag to load JSON data wrapped with a function name. Continue reading






