You can use something like
jQuery(document).ready(function($) {
$('tableSelector').DataTable({
"dom": '<"pull-left"f><"pull-right"l>tip'
});
});
with
.pull-left{float:left!important;}
.pull-right{float:right!important;}
The result is the following:

(note that the screenshot uses Twitter Bootsrap, for an additional table style)
More about DataTables DOM Manipulation can be found here .
source
share