Javascript – Get excel data and post to server side using ajax
I am trying to gather the data from excel using the js and ajax var ExcelToJSON = function () { this.parseExcel = function (file) { var reader = new FileReader(); reader.onload = function (e) { var data = e.target.result; var…