Forum Moderators: open
The website address (in case you would like to download / view it) is: [hanmilounge.com...]
The JS code can be downloaded from here: [hanmilounge.com...]
Does anyone know how to solve this?
Thank You
-Dennis-
I have a solution for you.
You need to change your variable definitions in the function InitVars() function from this format, using the character entities in a string:
a[1]= "퓌ㅓ로ㅕㅗ도"
to this format,using the unicode numbers only, separated by commas:
a[1]= String.fromCharCode(54476,12627,47196,12629,12631,46020)
This will ensure that the variable contains a correctly formatted unicode string.
Hope this helps,
ajkimoto