Specifically <br>. I have this data stored in my database Category#1<br>Category#2<br>Category#3
When I display them after a successful ajax request, I get exactly what was stored in the database. When I try to edit via console, it then will recognize the <br>.
How I got the data:
var category = response.items[index].category;
How I display it:
var cat = $('<td />', { text: category }).appendTo(tr);