Jaroslav Kuruc dijo:
> The point is, browser doesn't understand entities in JS. Try this:
>
> <html>
> <body>
> <script type="text/javascript" language="JavaScript">
> alert('&Aacute;');
> </script>
> </body>
> </html>

OK. I thought you was using javascript in special .js files. But this is
normal. XML does include the HTML entities as &Aacute; and similars.

Instead try the numeric representation. Example for &Aacute; try: &#193;

If you are NOT using <map:read> to send this page, then you can write the
literal (assuming you are encoding UTF-8). Example:

<html>
  <body>
    <script type="text/javascript" language="JavaScript">
      alert('To je slovensk� jaz�k');
    </script>
  </body>
</html>

I think this must work. If not, let me know and I will make some tests.

Best Regards,

Antonio Gallardo


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to