Render Partial View Using jQuery in ASP.NET MVC

asp.net-mvc, javascript, jquery, renderpartial

Solution

I have used ajax load to do this:

$('#user_content').load('@Url.Action("UserDetails","User")');

Problem

How do I render the partial view using jquery? We can render the partial View like this: ``` <% Html.RenderPartial("UserDetails"); %> ``` How can we do the same using jquery?

Original source

Related problems