How to deploy DOM object to html – Jquery
var cell = $("<div></div>"); for (var j =0 ; j < items.paths.length ;j++){ cell.append(item.paths[j]); } $(`<tr><td style="white-space: normal;"> ${cell} </td></tr>`).appendTo('#mytable'); I made the dom object named cell And I want to deploy the cell to html, however it shows only…