Light weight jQuery plugin for export table to excel file
Website and demo here:
http://tanvirpro.com/all_project/jQueryTableToExcel
-
Download the last release manually
Include jQuery and the plugin.
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script src="js/
jquery.tableToExcel.js"></script>
Create Excel file form HTML table
Add plugin any table with CSS selector
<span>১২৩৪৫৬৭৮৯</span>
<input type="text" value="১৯৭১">
Apply the plugin to input or any element on your HTML page and get replace Bengali digit to English digit.
<script> $(selector).
convertBengaliDigit(); </script>
Returns Bengali digit in English
১৯৭১ -> 1971 ২০১৮ -> 2018 ০১২৩৪৫৬৭৮৯ -> 0123456789
-
complete — Callback function trigged after the detection is completed
complete: function () { // ... }