[js] import file
https://www.youtube.com/watch?v=kJT-iMYMPKg&ab_channel=neilscodetutorials <script src=".../jquery.min.js"></script> <div id="buttondiv" > <input type="file" id="inputfile" /> <input type="button" id="viewfile" value="Import file" /> </div> <div class="container" id="container"> <table class="gridtable" id="tableMain"> <thead> <tr class="tableheader"> <th> column1</th> <th> column2</th> <th> column3</th> <th> column4</th> </tr> </thead> </table> </div> <script> $(document).ready(function(){ $('#viewfile').click(function(){ var rdr ...