I have been using a code available in the internet customized as per my requirement. In the javascript file i have a $(document).ready(function() in which i'm loading a csv file from internet. I need to change this to a local file instead of internet file as the code is going to run in a internet less environment.
var X = "https://xxxxxxxxx.csv".replace(/&/g, '&');
Need the help to use a local file instead of web file. Tried file:///D:/Project/X.csv but is not working.