I\'m trying to populate a div with a partial view in MVC 3. My controller looks like this:
[HttpPost] public ActionResult GetCustomerList(string searchString) {
Can you try this to see if it works?
function getCustomerList(searchCriteria) { $('#customerTabBody').load('@Url.Action("GetCustomerList", "Home")', { 'searchString': searchCriteria }); };