An open API service indexing awesome lists of open source software.

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

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);
}
);
```