I have a bilingual website
The value of a form field is set to "Correo electrónico" when the user request Spanish page.
As I try to validate form fields, if I do alert(jQuery('input#thefield').val());
I get: Correo electrónico
However, if I am testing the value of said input box (i.e.
jQuery('input#thefield').val() == "Correo electrónico"
)
jQuery does nto register.
TO check how jQuery was processing the string "Correo electrónico," I did an alert("Correo electrónico"); and the output was Correo electr[a symbol look at image]nico

What can I do to keep the field value in foreign characters, but translate this to be able to test against, as well as insert into field value if necessary?