Here is my ajax call.
$.ajax({ type: \"GET\", url: \"http://example.com/v1/search?keyword=r\", dataType: \"jsonp\", crossDomain: true, s
It's an incorrect JSONP Response. The server needs to process the callback=nameOfCallbackFunction argument of the GET Request and serve it as a function wrapper.
callback=nameOfCallbackFunction
GET
The proper response then should look like this:
nameOfCallbackFunction({"yourjson": "here"});