I'm trying to load a partial view using jQuery. The partial view is being loaded from Contact.cshtml. However, in Chrome, I keep getting a 404 when trying to load partialViewName.cshtml.
I have the following folder structure:
/Views/Contact/Contact.cshtml
/Views/Contact/partialViewName.cshtml
$('#divname').load('partialViewName');
The URL I'm on is http://localhost/Contact/Index
Any ideas what I'm doing wrong?