Click to See Complete Forum and Search --> : problems with swedish letters å,ä,ö


digital_storm
10-30-2003, 07:00 AM
Hello!

I'm very confused for the moment...
Im trying to do an inputcheck, I controll that every inputfield is set.

If they are not an "alarmwindow" will popup with some text.

My question is I'm using the "ordinary tags (like I use in html)" for å ä ö but they looks very strange when they are shown in the alarmwindow.
I've also tried to print the letters å ä ö as they are but with no result.

How should I write to get the letters "å","ä" and "ö" looking good in the allarmwindow?

Regards // digital_storm

Fang
10-30-2003, 08:19 AM
Use unicode (http://www.unicode.org/charts/)
alert("\u00E5 \u00E4 \u00F6");

digital_storm
10-30-2003, 10:58 AM
Thank you very much..your advice helped me!