I am using jQuery DataTables to sort through table data and I want to customize the layout. Instead of the framework injecting the HTML elements, I just want to specify using IDs where they should be. This is my initialization:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#results-table').dataTable({
"sDom": 'fi'
});
});
</script>
That puts in both the search bar and the information text. I have already created an input that I want to use for the filter as well as a div for the information displayed. I just need the framework to insert the HTML into these elements instead of creating new ones.