When I try to send HTML content in JSON object as a response from servlet, then IE 10 does not receive HTML content with tags.
Response type is application/json
Java:
String summaryRptHTML = sum.generateSummaryTable(summary, false);
jSonObj.put("hasError", false);
jSonObj.put("message", "File Proceesed");
jSonObj.put("summary", summaryRptHTML );
JavaScript :
Client: "ProcessFileServlet",
function(responseJSON) {
System.hideLoadingScreen("");
responseJSON = eval(responseJSON);
responseJSON.summary; // its nothing
}