skip to Main Content

Populate datatable using ajax call – Jquery ajax

I am trying to populate a data table using ajax call. But it fill only the first column with last value from columns. Here is my code: $(document).ready(function() { $.ajax({ url: "http://192.168.2.32:5000/get_all_locations", 'method': 'GET', 'contentType': 'application/json' }).done(function(data) { console.log('dataaa', data);…

VIEW QUESTION
Back To Top
Search