I am making a simple table page and I don't want to manually add rows using HTML. I have about 100 rows of data and I am working in a Static Environment so JavaScript is the only option I have (or the only one I know maybe able to do this).
I did try some tutorials and did find a way to import CSV to HTML. I used this tutorial and it worked like charm.
But the issue is that the tutorial uses an <input> tag to get the File Object. I only have a single CSV file locally stored in the same folder as the Web Page. I tried looking up for File objects and Blobs but I am not able to make it work so far. None of my functions work.
Here's what I want my page to do:
Upon opening, I want my page to directly load the data from the CSV and put it in A Table. I do know how to add table code to the html page using innerHTML but I just haven't been able to import the actual CSV data. Please help!