Tables next to each other horizontally

Tables next to each other horizontally

juditajudita 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"},]

});
});

(```)

Answers

This discussion has been closed.