rainabba / jquery-table2excel

jQuery Plugin to export HTML tabled to Excel Spreadsheet Compatible Files
593 stars 666 forks source link

not export inputs value #38

Open sashatexb opened 8 years ago

sashatexb commented 8 years ago

not export inputs value

nolikeother commented 7 years ago

I have the same problem, this plugin parse input from attribut "value", but if somebody change input , nothing happend it html-code. I resolve it some strokes: $('button').click(function(){ $('#table input').each(function(){ var ItemValueM = document.getElementById(this.id).value; $(this).attr('value',ItemValueM) }); });