this won't work because of the super secure AJAX request method of
WebKit..
you can't use any html special tags like or &aecute;
but you may use the hex value for it.. example &aecute; => á
=>   ...
I do a ugly hack
buffer my output and if webkit is detected replace the tags...
don't even lock exactly the same if you replace the with  
but it works more or less...
don't know if there is a "better" way...
On Sep 7, 11:41 pm, jeresch <[EMAIL PROTECTED]> wrote:
> Hello everyone,
>
> I was a little disappointed when I tried my website on Opera and
> Chrome, the new Google's web browser, since it don't correctly work on
> it while it has no problem at all with IE, Firefox and Safari.
>
> In fact, I use Request.HTML to load pages into a div, and when I'm
> trying to do this, the HTML codes on the loaded page, like é or
> è etc... , are not understood by the web browser. Instead, it
> give me some errors like this one :
>
> "This page contains the following errors:
>
> error on line 17 at column 409: Entity 'agrave' not defined
> Below is a rendering of the page up to the first error."
>
> When the page are not loaded by Mootools' Request.HTML, the page is
> correctly displayed.
>
> Here is the code I wrote to load pages :
>
> var options = {url: "site/accueil.php", method : 'get' , update: $
> ('main_frame'), evalScripts: true};
> var monObjetAjax= new Request.HTML(options);
> monObjetAjax.send();
>
> Someone would have a little idea how it could work on Opera or Chrome,
> or why it doesn't actually work ?