jQuery dataTables makeEditable() is not a function
I'm new to Datatables and I'm trying to make the table editable, but I keep getting this error: TypeError: $(...).dataTable(...).makeEditable is not a function My jQuery script looks like this: $(document).ready( function () { var oTable = $('#data_table_wrapper').dataTable({ "sDom": 'R<"H"lfr>t<"F"ip<', "bJQueryUI": true, "sPaginationType": "full_numbers", "aoColumn": [ { "bVisible": true }, { "bVisible": true }, { "bSortable": false }, ] }).makeEditable({ sUpdateURL: "/abc.php" }); }); I am including these files: jquery-1.9.1.min.js jquery.dataTables.min.js jquery.jeditable.js jquery