Tables next to each other horizontally
Tables next to each other horizontally
judita
Posts: 2Questions: 2Answers: 0
can someone help me with placing two tables side by side?
I have the Javascript sourced data.
(```)
$(document).ready(function () {
$('myTable1).datatable({
data: dataSet1,
columns : [{"title": '' Price''}, {"title": "Date"},]
});
});
$(document).ready(function () {
$('myTable2).datatable({
data: dataSet2,
columns : [{"title": '' AA''}, {"title": "BB"},]
});
});
(```)
This discussion has been closed.
Answers
https://datatables.net//forums/discussion/1758