mantou132/Lightweight-JSONP
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Lightweight JSONP Javascript Library without dependencies.
Usage:
/* Optional setting for default callback name */
JSONP.init({
callbackName: 'jsonp'
});
/*
* This will make a request for the url
* /test?otherParam1¶m1=a¶m2=b&callback=json{N} where {N} is an auto incrementing counter
* and then callback your function with the response.
* Fourth parameter is if you want to override the "callback" named parameter.
*/
JSONP.get('/test?otherParam=1', {param1:'a', param2:'b'}, function(response){
console.log(response);
}/* , "overrideCallbackName" */);Releases
No releases published
Languages
- JavaScript 62.7%
- HTML 28.4%
- PHP 8.9%