“jquery.jsonp.js” GET works. What about POST PUT DELETE OPTIONS?
jsonp http methods besides GET (POST, PUT, OPTIONS, DELETE) Using jquery built-in $.ajax method looks like this $(document).ready(function() { $.ajax({ type: "GET", url: "http://myurl.com/webservice&callback=?", ... }); Only want to draw attention to the line type: "GET", With $.ajax performing a http PUT would be simply change type: "PUT", This code example comes from JSON parsing from cross domain using jquery ajax Not using $.ajax Using google-code's jquery.jsonp https://github.com/jaubourg/jquery-jsonp Here is an example of using jquery.jsonp.js with the GET method $.jsonp({ cache: false,