I have seen some posts relating to this but can\'t seem to get it to work. With the redirect I get a \'resource cannot be found error\'.
I am trying to redirect to a De
This would also work I believe:
$('#results').on('click', '.item', function () { var NestId = $(this).data('id'); var url = '@Html.Raw(Url.Action("Artists", new { NestId = @NestId }))'; window.location.href = url; })