Jsonp result not working on my asp.net-mvc site?

You don't have a success function defined for your ajax request. The jsonpCallback parameter that you are using only defines the name of the query string parameter that will be used by the server to wrap the JSON response into So try like this: $. Ajax({ url: 'mySite.com/MyController/Terms', type: 'GET', dataType: 'jsonp', timeout: 10000, jsonp: 'jsoncallback', success: function(json) { var terms = json.

HTMLText; $('#term2'). Html(terms); } }) Also checkout the following answer.

You don't have a success function defined for your ajax request. The jsonpCallback parameter that you are using only defines the name of the query string parameter that will be used by the server to wrap the JSON response into. So try like this: $.

Ajax({ url: 'mySite.com/MyController/Terms', type: 'GET', dataType: 'jsonp', timeout: 10000, jsonp: 'jsoncallback', success: function(json) { var terms = json. HTMLText; $('#term2'). Html(terms); } }); Also checkout the following answer.

I still don't get the callback using the format you listed in your answer . . Any other thoughts?

In fact, with this way, I now no longer even see this request in firebug at all. – leora Sep 26 at 12:45 I actually got it working using your answer from another question: stackoverflow. Com/questions/4795201/… – leora Sep 27 at 2:52.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions