I am trying to display the word Colón
as a possible entry in an autocomplete JQuery dialog. Unfortunately, I get Colón
instead. I tried to HTML escape it, but it displays Colón
.
How can I have this word displayed correctly?
REM: The array entry is defined as following:
v["CR"]="Colón";
Update:
1) The doctype is
<!doctype html>
and I have a
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
2) I am using JQuery 1.8.3
3) The list local, or to be correct, in a Javascript file which is loaded with:
<script src='./incl/curr.js' type="text/javascript"></script>
I have performed an extra test and included the word in a pure HTML <h2>
. It is displayed correctly.