javascript - JQuery Datatable : 'nTableWrapper is null or not an object' error -


i newbie jquery data table , here below code.

var otable = $('#table').datatable();  otable.fndestroy();  otable = $('#table').datatable( {                  "bprocessing": true,                  "bserverside": true,                  "fndrawcallback": function( osettings ) {                   },                  "fnserverdata": function ( ssource, aodata, fncallback, osettings ) {                          osettings.jqxhr = $.ajax( {                                      "datatype": 'json',                                      "type": "post",                                      "url": ssource,                                      "data": aodata,                                      "success": function(data){                                      }                          }                  }         ); 

it throwing following error in ie-8:

ntablewrapper null or not object

any in right direction appreciated.

thanks in advance!!!


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -