Unable to get data-table output
Unable to get data-table output

Hello,
I am very very new in html and css field.
I would like to get table output as shown bellow (screenshot_8).
I have put all javascript and css and html codes together in one .html file. When I run the .html file I am not getting desired output.
I am attaching my html code (monitoring.html).
Please suggest what steps do I need to take to get the output.
Lateron, I would like to update some rows in database by selecting the checkbox.
This question has an accepted answers - jump to answer
Answers
You need to change the order of your JS loading to this:
The Datatable initialization code needs to be below the above. I would recommend moving it out of the
<head>
and place it at the bottom before</body
>.That should get you going. Certain items have dependancies on other scripts being loaded first. For example
jquery.dataTables.min.js
requires jQuery to be loaded first.dataTables.select.min.js
relies on Datatables being loaded and should followjquery.dataTables.min.js
.Kevin
Thanks a ton, for your prompt reply.
That worked fine for me.