I'm trying to get a certain fieldset to show up in a dialog box (using facebox) .. I've got the button set up, the dialog box and the HTML as a partial that I call .. The only thing is I don't know how to call the partial inside the jQuery..
Here is the jQuery:
$('#addCatbutton').click(function() {
jQuery.facebox('Add Category');
});
Here is the asp.NET to add the html:
<% Html.RenderPartial("EditCategories", ViewModel); %>
Now I'm trying to get the facebox() to call that asp code .... any ideas on how I can do that?