My webpage was functioning perfectly in Internet Explorer.
I decided to enhance it by incorporating the impressive jQuery plugin Datatables. I added the following code in DOMReady:
$('#articlestable-container table').dataTable({
"bPaginate": true,
"bLengthChange": false,
"bFilter": true,
"bSort": false,
"bInfo": false,
"bAutoWidth": false
});
After making this change, everything continued to work seamlessly on Webkit and Firefox browsers, as shown in the image.
However, I encountered an issue in IE - the table ended up hiding the menu that should have appeared over the table instead.
Upon inspection, it was evident that the submenu was rendering beneath the table.
I do not believe z-index is causing this problem. The submenu already has a z-index of 9999.
What else could be causing this? Any suggestions on resolving this issue would be greatly appreciated.