Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] Charset Interner Explorer

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #156409
    xam
    Participant

    Hi everybody,

    I have a cross browser problem with a new website that I’m building. In Chrome everything looks fine, but in IE it doesn’t display certain characters properly.

    This is the website I’m talking about: http://www.foodenjoyce.nl. For example on this page. All the way at the bottom it should show: Smörgåsbord, but in IE it doesn’t.

    The website is constructed with one html page and seperate php files which contain the text and images (the content). Where the content should be on the html page, there is some javascript code that loads the seperate php files with the content. This probably has to do with the problem, but I need it to make sure the pages load as fast as they do.

    Thanks in advance for any support you can give me!

    Kind Regards, Xam Hanegraaf

    #156488
    __
    Participant

    Well, first off, your http headers do not specify a charset:

    Content-Type: text/html
    

    You should be sending something like:

    Content-Type: text/html; charset=utf-8
    

    The <meta> is not enough. (Never is.)

    All the way at the bottom it should show: Smörgåsbord, but in IE it doesn’t.

    What does it show?

    Further, what version of IE do you observe this problem in?

    #157697
    xam
    Participant

    Thanks for your reply, but it seems like I implemented the font the wrong way and the .eot file was faulty. So eventually it was more of a CSS problem.

    But it works now!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.