Problems with accent marks
Take a look at this simple javascript code fragment:
s = l.replace("à","a");
s = l.replace("è","e");
s = l.replace("é","e");
s = l.replace("ì","i");
s = l.replace("ò","o");
s = l.replace("ù","u");
After the last update of Dreamweaver (2017.0.1) the same fagment in the browser page turns into
s = l.replace("Ã ","a");
s = l.replace("è","e");
s = l.replace("é","e");
s = l.replace("ì","i");
s = l.replace("ò","o");
s = l.replace("ù","u");
Where am i wrong?
I tried changing the page properties, but nothing, everything remains the same.
The only way is to save the page with notepad with ANSI encode. However if i open with dreamweaver, dreamweaver doesn't respect the new page encode and the error comes back again.
Any help?
