Internet Explorer 8 issues

Internet Explorer 8 issues

harry454harry454 Posts: 2Questions: 2Answers: 0

Greetings,
I used a table template for my work, that works perfectly in chrome however in explorer dont do anything.

This is my header

<link rel="stylesheet" type="text/css" href="DataTables/DataTables-1.10.9/css/jquery.dataTables.css"/>
<link rel="stylesheet" type="text/css" href="DataTables/FixedHeader-3.0.0/css/fixedHeader.dataTables.css"/>
<link rel="stylesheet" type="text/css" href="DataTables/Responsive-1.0.7/css/responsive.dataTables.css"/>
<link rel="stylesheet" type="text/css" href="DataTables/Scroller-1.3.0/css/scroller.dataTables.css"/>

<script type="text/javascript" src="DataTables/jQuery-2.1.4/jquery-2.1.4.js"></script>
<script type="text/javascript" src="DataTables/DataTables-1.10.9/js/jquery.dataTables.js"></script>
<script type="text/javascript" src="DataTables/FixedHeader-3.0.0/js/dataTables.fixedHeader.js"></script>
<script type="text/javascript" src="DataTables/Responsive-1.0.7/js/dataTables.responsive.js"></script>
<script type="text/javascript" src="DataTables/Scroller-1.3.0/js/dataTables.scroller.js"></script>

<script>
$(document).ready( function () {
$('#table_id').DataTable();
} );
</script>
<php
    echo "<table id=\"table_id\" class=\"display\">";
echo "<thead><tr>";
echo "<th>ITS No</th><th>Date</th>";
echo "<th>Cell</th><th>Shift</th><th>Requestor</th>";
echo "<th>Category</th><th>Issue</th>";
echo "<th>Action</th><th>Action Owner</th><th>Aging</th>";
echo "<th>Status</th><th>Comments</th><th>Completed Date</th></tr></thead><tbody>";
 ?>

Explorer just dont show anything just the names of the table headers an content, but no decorations no buttons no anything.
And like i said chrome works perfeclty, however for my job I need to make it work on IE.

This question has an accepted answers - jump to answer

Answers

  • ThomDThomD Posts: 334Questions: 11Answers: 43
    Answer ✓

    I'm pretty sure JQuery 2.x doesn't support IE 8. Try JQuery 1.9.x

This discussion has been closed.