internet explorer - IE 7 Accented charcters in javascript -
i facing issue displaying accented characters in ie7.the same charcters render fine in ff,chrome
platform: java
issue: accented characters in jsp rendered fine. accented characters in js not rendered fine on ie7 alone, instead see weird characters
solutions tried: used charset="utf-8" in places importing js files
for eg. accented e in javscript appears box, closely represented [].
simply make sure you're using correct encoding (utf-8) in source files (both js , jsp) , use
<meta charset="utf-8"> in html template.
as far source files, can check how encoded within ide (file properties in eclipse, format tab in notepad++, etc).
Comments
Post a Comment