diff --git a/docs/example-widget-output.html b/docs/example-widget-output.html
index 24753a9a..2022b4bf 100644
--- a/docs/example-widget-output.html
+++ b/docs/example-widget-output.html
@@ -339,11 +339,29 @@ table.tablesorter tbody tr.even.checked td {
Rowspan and colspan are supported by this widget. Please take note of additional information in the "Rowspan and colspan" section below.
+ Working with Excel:
+
+ - To save a file for Excel
+
+ - Set the
separator
to a comma (,
).
+ - Save the file with a
csv
extension, then load it into Excel.
+ - Or, save the file with a
xls
extension; but when loading the file in Excel, you will likely see a message stating that the file is corrupt. Continue loading and you will see the expected data placed into each cell.
+
+
+ - To copy the data into Excel
+
+ - Set the
separator
as a tab (\t
).
+ - Open the data in a popup window, then copy the contents to the clipboard.
+ - Paste from the clipboard directly into a cell in Excel.
+
+
+
+
This demo uses Bootstrap to create the download button dropdown for each table allowing the user to choose the settings
@@ -359,6 +377,7 @@ table.tablesorter tbody tr.even.checked td {
HTML Table to CSV (License unknown)
Download-File-JS (Apache v2.0)
Download demo from ebidel/html5demos
+ FileSaver.js (MIT)