Search:
Class o2.Jsonp
static
class
o2.Jsonp
Function Summary
Function Details
function get
Creates a JSONP request.
Usage example:
o2.Jsonp.get('http://example.com/api.php', {param: 'value'}, function(data) { } );
Parameters:
url
- the URL of the
JSONP service.
params
- parameters in the form of {name1:value1,...}
callback
- callback to execute after
JSONP arrives.
An object to make JSONP calls.