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

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -