Here is my code
$.ajax({
    type: "GET",
    url: "http://example.com?keyword=r&callback=jsonp",
    success: function (data) {
        alert(data);
    },
    dataType: "jsonp",
    error: function (xhr, errorType, exception) {
        var errorMessage = exception || xhr.statusText;
        alert("Excep:: " + exception + "Status:: " + xhr.statusText);
    }
});
OK so the above code works fine and i'm getting a data as jsonp.Now i cant figure out how to convert jsonp to json.
 
     
     
     
     
    