https://github.com/fernandomoraes/simple-jsonp-helper
simple jsonp helper
https://github.com/fernandomoraes/simple-jsonp-helper
Last synced: 8 months ago
JSON representation
simple jsonp helper
- Host: GitHub
- URL: https://github.com/fernandomoraes/simple-jsonp-helper
- Owner: fernandomoraes
- Created: 2013-12-08T19:18:41.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-10-01T19:01:43.000Z (over 7 years ago)
- Last Synced: 2025-03-31T05:28:31.455Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
simple jsonp helper
=====
## Helper to make a jsonp request.
Import json.min.js to your page:
```html
```
Create a new Jsonp and pass your callback:
```javascript
var url = 'http://api.wipmania.com/jsonp';
new Jsonp(url).callback(
function(data){
console.log(data);
}
);
```