plugins.min.js:3299 Uncaught TypeError: Cannot read property 'length' of undefined datatable code example
Example: cannot read property 'length' of undefined datatables ajax
$(document).ready(function() {
$('#example').DataTable( {
"ajax": {
"url": "data/objects_root_array.txt",
"dataSrc": ""
},
"columns": [
{ "data": "name" },
{ "data": "position" },
{ "data": "office" },
{ "data": "extn" },
{ "data": "start_date" },
{ "data": "salary" }
]
} );
} );