I am trying to set content of thickbox in jquery as I want to take content from server. I am using following code in clientside:
function ShowEditForm(id) {
$.ajax({
type: 'POST',
url: '@Url.Action("ActionMethod", "Controller")'
}).done(function (html) {
//I am getting my html here
alert(html);
});
}
How do I show it in my thickbox?
Thanks in advance...