I want to pass multiple values to a jquery dialogbox and show those values in the table in the dialog box ...
I am rending the html content in the dialogbox through the ajax call
this is my ajax call
$.get(url, function (data, status) {
$("#dlgMessages").html(data);
$("#dlgMessages").dialog('open');
}).error(function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.status);
alert(jqXHR.responseText);
alert(errorThrown);
});
Please help me.