How to remove quotations
How to remove quotations

in DataTables
Hi,
I have the following
$('#example').DataTable( {
dom: "Tfrtip",
ajax: "../php/staff.php",
columns: [
{ data: "COMMENT" }
],
}
Returns the following result:
<span class="dtr-data">
"My string is surrounded by quotation marks."
</span>
With very long strings automatic line wrapping will not work. So my question is how I remove the quotation marks?
Many thanks in advance.
This discussion has been closed.