How to merge two column in one header in jquery datatables
I have a two data column
{
data: "Business",
name: "Business",
orderable: false,
className: "hidden-xs",
},
{
data: "Zone",
name: "Zone",
orderable: false,
className: "hidden-xs",
},
but i want to merge this two like using </br> under one header
For example Header
<th class="hidden-xs">Business</th>
Output: Business
Zone
I want to merge and show this way. Help please