What is the best way of display intranet SharePoint 2010 List in multiple data tables?

What is the best way of display intranet SharePoint 2010 List in multiple data tables?

TripleAwebTripleAweb Posts: 1Questions: 1Answers: 0
edited December 2015 in Free community support

Has anyone ever publicly displayed an internal SharePoint 2010 list from an intranet site using datatables.net jQuery? IT staff plans to publicly expose the Sharepoint list from the intranet site, so users can SEE it display on our public website in multiple data tables. Is this possible?

So far I found on the website forums, the JavaScript code that references the class "table.display" to display multiple data tables.

Any help on how to build and clean this up?

```$(document).ready(function() {
$('table.display').DataTable();
} );

var call1 = $.ajax({
url: "http://sitenet.address/folders/list-file-name.aspx",
type: "GET",
dataType: "json",
headers: {
Accept: "application/json;odata=verbose"
}```

This discussion has been closed.