I got following json:
{"results":[{"id":"1","title":"Hello","content":"Hello<br>world"}]}
the data can be successfully displayed in the following way
$('<td class="a">').html(res.id),
$('<td class="b">').html(res.title),
$('<td class="c">').html(res.content),
The only problem is that I want to display <br> tag as well. Is there any function in jquery which can help me to display html tag as well?