I am having issue in displaying some Spanish characters through javascript. Below is an example of string.
AlmerÃa|Barcelona|Córdoba
When I use following command, it works fine
Quote:
quote:
var result = "AlmerÃa|Barcelona|Córdoba";
alert(result);
|
But when string is parsed into xmlHttp.responseText it display invalid characters in between the string
Quote:
quote:
var result = xmlHttp.responseText;
alert(result);
|
www.ithighway.co.uk