I have the following:
$.post('@Url.Action("getName")', postData, function(data) {
// Can I use my json post data?
}, 'json');
My post response I have
{"Id":1,"Name":"John", "Age": 24}
I don't know how to get this post response to show on my page view.
I am using MVC 4 and I have a model in this page already that on dropdown select change triggers this post.
Please advice.