Hy there
I have a weird effect when a *.csv file is parsed. I debugged the process and I saw, that there is a problem with the german "Umlaute" when loading the csv file. When I load the file from my dropbox account everything is correct. When I load the file form my pc, then the german "Umlaute" are not correct and so the parsing of the file is incorrect.
e.x.:
csv File: Graubünden;in Betrieb
when loading the data from my pc: Graub�in Betrieb
so, when the file is loaded, there is no ';' and the data can't be split correctly.
Why is this? I saw here that adding the UFT-8 BOM could solve the problem. But I don't know how to do this, and yes, I've already searched on Google.
Here's the code:
jQuery.get('resource/myFile.csv', function (data) { ... }
thanks Guys