I have use this code and append value in div
var displayTags = [];
for (x = 0; x < response.item.displayTags.length; x++) {
var displayTagValue = response.item.displayTags[x].displayTagSlug;
displayTags.push(displayTagValue);
$('.publisher-TOPICS').append('
"' + displayTagValue + '"
');But I have face a issue this data append
"witnesses"
"evidence"
"jury"
"jurors"
"persuade"
"trial-consultant"
"deposition"
How to append this data without double qoutes.

Sachin SinghPosted Aug 3, 2021, 7:55 PM
'
+ displayTagValue + '');