Hi,
Ive got this in an XML file that i parse with JQuery.
<title>Lång</title>
I'm using .text() for pulling out the text, but it's wrong encoded.
How do I get it encoded to proper text? I want 'Lång' out of it.
Edit:
I'm using JQuery for getting data. Have it on my work computer, but something like this:
$.ajax({
type: 'GET',
url: 'http://myserver/blah?query_string',
dataType: 'xml',
success: function(data) {
var blah = $(this).find("blahblah").text();
}
});