I have a string returned from server with encoded HTML tags.
I use the following:
var result = $("#jobsTmpl").tmpl(results.data);
$("#jobsContainer").html(result);
In the template I am using the following for the string that contains the HTML encoded: {{html Body}}
I also tried ${Body} with no luck.
What's happening is that, the HTML string is displayed as encoded HTML, I just want to have the HTML take effect
Thanks