I have a jquery function which makes an ajax call to a webservice method on the web server, the method returns a html table with data. I am using .html() to render the return va
Have you tried setting data.d[1] to a variable and then adding it?
data.d[1]
For Example:
if (data.d[0] == "true") { var results = data.d[1]; $("#dvProudctInstruction").html(results); }