vote up 2 vote down star

Hi everyone,

I'm currently coding a French website. There's a schedule page, where a link on the side can be used to load another day's schedule.

http://aquate.us/film/horaire.html

(At the moment, only the links for November 13th and November 14th work)

Here's the JS I'm using to do this:

	<script type="text/javascript">
	function load(y) {
		$.get(y,function(d) {
			$("#replace").html(d);
			mod();
		});
	}
	function mod() {
		$("#dates a").click(function() {
			y = $(this).attr("href");
			load(y);
			return false;
		});
	}
	mod();
	</script>

The actual AJAX works like a charm. My problem lies with the response to the request.

Because it is a French website, there are many accented letters. I'm using the ISO-8859-15 charset for that very reason. However, in the response to my AJAX request, the accents are becoming ?'s because the character encoding seems to be changed back to UTF-8.

How do I avoid this? I've already tried adding some PHP at the top of the requested documents to set the character set:

<?php header('Content-Type: text/html; charset=ISO-8859-15'); ?>

But that doesn't seem to work either. Any thoughts?

Also, while any of you are looking here...why does the rightmost column seem to become smaller when a new page is loaded, causing the table to distort and each <li> within the <td> to wrap to the next line?

Cheers

flag

75% accept rate

7 Answers

vote up 3 vote down check

UTF-8 is supposed to handle all accents and foreign chars - why not use it on your data source?

EDIT
Here's a test file with your data

Everything should be UTF-8 in the first place. I loaded the files in notepad++, converted to utf-8 and manually changed the charactes to accents were needed. Once done everything's working like a charm.

BTW, unless your server is defined to php-process .html files, the files you're loading with ajax aren't getting youre iso charset. If you insist on using the iso charset, request a php file instead of an html file, and define the charset in the header (not in the file itself)

link|flag
Doesn't work. Here's the page with a UTF-8 charset: aquate.us/u/7183981145359693722.jpg As you can see, the accents are still getting butchered. – Salty Feb 16 at 14:35
That shouldn't happen. What's your data source? Database? Flat text file? – yoavf Feb 16 at 14:36
That's not with the data source, even though the same thing happens. That's if you just load an HTML page with accents on a UTF-8 charset. – Salty Feb 16 at 14:41
Again - shouldn't be a problem. Here's your page converted to utf-8. Eveythings cool, browser has no problems reading it: blog.yoavfarhi.com/test.html – yoavf Feb 16 at 14:49
I also agree that there shouldn't be a problem with UTF-8. – kgiannakakis Feb 16 at 15:03
show 5 more comments
vote up 0 vote down

I DONT AGREE everything must be UTF-8, you can make it work perfectly with ISO 8859, I did, please read my response here.

my response in stackoverflow

link|flag
vote up 0 vote down

But what if you can't change what the server sends? I have exactly the same problem trying to get a HTML page that is ISO-8859-1 encoded and do some parsing with it. But I have no way to change the backend. Is there any hope?

link|flag
vote up 0 vote down

I´ve had the same problem with pages that:

  • Show up fine when called normally
  • Have the special characters messed up when called via an ajax request

To solve the problem (using php), I used utf8_encode() or htmlentities() on the source data. Both worked, I have used them in different projects.

link|flag
vote up 0 vote down

Specifying the content type on the AJAX-call solved my problems on a Norwegian site.

$.ajax({
        data: parameters,
        type: "POST",
        url: ajax_url,
        timeout: 20000,
        contentType: "application/x-www-form-urlencoded;charset=ISO-8859-15",
        dataType: 'json',
        success: callback
});

You would also have to specify the charset on the server.

<?php header('Content-Type: text/html; charset=ISO-8859-15'); ?>
link|flag
vote up 1 vote down

When printing out the variables in the ajax file. Put a

htmlentities()

Around them, see if it works. Worked for me in an Icelandic ajax application.

link|flag
Thanx Ólafur it's a very simple solution that just works! – tvgemert Aug 27 at 13:33
vote up 1 vote down

You need to set up your server to use ISO-8859-15 as the character encoding (adding the appropriate HTTP header). Doing it in the body of the html won't help.

I can see this line

<?php header('Content-Type: text/html; charset=ISO-8859-15'); ?>

at the source of your html. This shouldn't happen. Using Live HTTP Headers I can't see the appropriate charset HTTP header. Use that for both your first page and the ajax service.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.