jQuery / javascript resolve virtual address to URL

283 Views Asked by At

I am trying to load a partial view based on the current selected value in a dropdown list. My code works when I hard code the url...

$(document).ready(function () {
    $('#accountDropdownList').change(function () {
        var value = $(this).attr('value');
        $('#addressDetails').html('').load("http://localhost:52477/Account/Details/", { id: value }, function (data) { });

        return;
    });
});

but I want to use a virtual address like in my asp.net mvc 3 in c# views

@Html.Action("Details", "Account", new { id = value })

Is there anyway to resolve the controller and method names to a complete url?

Thanks.

0

There are 0 best solutions below