pulling data from table via ajax
-
On my customers website ( I am a developer), we have built a map with a bunch of points and times…where the data for those points gets pulled from an excel file. I want my customer to be able to login to the backend and edit those points so they dont have to download the excel, edit and re-upload every time. Something like an excel app directly in WordPress. Currently I am pulling the data from the excel file using this javascript code:
$.ajax({
type: “GET”,
url: “http://www.domain.com/wp-content/uploads/2016/09/file.csv”,
dataType: “text”,
success: function(data) {
…Is it possible to call a table in TablePress the same way? Is it saved as an excel file somewhere that I can access it or is it accessible by an ajax call like this in another way?
Please advise! Thanks!
The topic ‘pulling data from table via ajax’ is closed to new replies.