can you please tell me how to read file from folder in jQuery ?Actually I have one folder name "Test" on desktop and inside that I have one file "VoipMosMO#" file.I need to read content of that file. I am able to read content when I make url(external url) of that file in fiddle.And content is display now I want to get content of that when It is on my pc "Desktop" location inside the folder. ? fiddle
jQuery.get("abc", function(data) {
alert(data);
//process text file line by line
$('#div').html(data.replace('n','<br />'));
});