I am using MVC3 with Jquery's .load() with a PartialView().
From my jquery, I am doing the following:
$("#stlist").load('@Url.Action("KitEdit","Kit")' + '?id=' + id+ '&pick=' + pick)
The partial view is called from the KitEdit action.
I was wondering if there is another way of loading a partial view besides the .load()?
I am getting some wierd behaviors where once the .load is done, some of the buttons don't work the second time.