code is working on mozilla but not in chrome

code is working on mozilla but not in chrome

sjassjas Posts: 2Questions: 0Answers: 0
edited April 2014 in DataTables 1.9
Im using jquery.dataTables.min version1.9.2.
im creating an app that displays data from server. I need the table to be sortable and display the number of data per page depending on the desired of the user.

Here's my code:

[code]















$.ajaxSetup({cache:false});
$.getJSON("/dataParser/parseData",function(jsondata, status)
{
if (status == "error") {
console.log("Error");
}
else if (status == "success") {

str='\0';
for(var i=0; i

Replies

  • allanallan Posts: 61,446Questions: 1Answers: 10,054 Site admin
    Can you link to a test case and also try updating to v1.9.4 please.

    Allan
This discussion has been closed.