code is working on mozilla but not in chrome
code is working on mozilla but not in chrome
sjas
Posts: 2Questions: 0Answers: 0
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
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
This discussion has been closed.
Replies
Allan