Previously, datatables were initialized as follows:
var oTable = $("#selector").dataTable();
This used to return a jQuery object which would stored in the variable oTable. And then to access the api to modify table properties, we had to initialize the api differently, as shown below:
...