On 03-02-2012 19:45, Phil Charlesworth wrote: > I have posted Issue 681 about this problem: > > http://code.google.com/p/pyjamas/issues/detail?id=681 > > Please see the issue for details. Somewhat releated problem, diacritic characters are ok in PYJS, but wrong in PYJD ((IE).
I had the same effect in some other situation, and found by making a type, that IE handles the character encoding wrong. The correct way to specify encoding in the web is: <meta http-equiv="content-type" content="text/html; charset=UTF-8"> which doesn't work correctly in IE by making the following type <meta http-equiv="content-type" content="text/html;" charset=UTF-8> the encoding works in Mozilla, Chrome and IE cheers, Stef

