by S M Zahed Kamal | Mar 28, 2021 | How To, Javascript
As we know a CSV file is a Comma Separated Values file that contains plain texts as a list of data. So, we gonna create a function that will take all data from an HTML table, separate all the td (table data/cell) or th (table header) with a comma and for every tr...
by S M Zahed Kamal | Feb 6, 2021 | How To, Javascript
Having a drag and drop zone for file uploads is a very common thing these days, and it’s very user friendly. So, Let’s create a drag & drop zone for input file element without any external libraries. But it will work on modern browsers only. First, we...