When I test local it will work without any issue. When I copy the same files on server it will be table content and recognised CSS. I have put the same javascript files but sorting link does not execute sorting and also search input with pagination is not there.
As I understand there is javascript at the top page within head:
<script type="text/javascript" charset="utf-8">
$(document).ready( function () {
var oTable = $('#example').dataTable( {
"sDom": 'RC<"clear">lfrtip'
} );
new FixedHeader( oTable );
} );
</script>
If I remove this it will not work sorting and also search input.
I have this at website. Is this issue with encoding as I have stored javascript with charset="utf-8" without BOM and inserted files have all the time charset="utf-8"?
I have noticed new error
$ is not a function:
<script type="text/javascript" charset="utf-8">
jQuery(document).ready( function () {
var oTable = $('#example').dataTable( {
"sDom": 'RC<"clear">lfrtip'
} );
new FixedHeader( oTable );
} );
</script>
It is just one error now for tabs which will be solved.
Maybe is Issue is with script from
script type="text/javascript" charset="utf-8">
jQuery(document).ready( function () {
var oTable = $('#example').dataTable( {
I don't see any Javascript errors on the page now, but I also don't see any DataTables initialisation... I don't see where you are calling jQuery(..).dataTable(...) - could you show me where you are making that call please?