I have the following code on my html page which loads an external content.html file into a DIV #ajax via Ajax:

<script type="text/javascript">             $(document).ready(function(){
                $('.more').live('click',function(){
                    var href = $(this).attr('href');
                    if ($('#ajax').is(':visible')) {
                        $('#ajax').css('display','block').empty();
                    }
                    $('#ajax').css('display','block').animate({height:'440px'},function(){
                        $('#ajax').html('<img class="loader" src="loader.gif" alt="">');
                        $('#ajax').load('content.html #'+href,function(){
                            $('#ajax').hide().fadeIn().highlightFade({color:'rgb(253,253,175)'});

(code continues here, just cut off to illustrate import part)

Here is my issue:

My page features some text in Cyrillics (Russian), therefore my main/parant HTML page (which contains the above script) is encoded in charset=iso-8859-5. This works fine and all English and Russian characters are displayed without issue.

However, the Russian text within the external content.html does not import (correctly) and is not displayed correctly, instead, the Russian characters become corrupted, whilst the English are displayed correctly.

I assume I need to "call" the character set into the external html page somehow. Do I do this via the Ajax script? or can I simply add something to the external html file? Note: the external HTML file only contains the "body" elements (no headers, etc), i.e. just the HTML information that needs importing.

Thank you very much for your advice! Gee

link|improve this question
update: I added <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-5"> to the external html. This seems to have fixed the issue, however I am not sure it is a good idea to add this tag inside the external html, given that it doesn't really contain a header, and the parent html already includes a header? – Gee Nov 2 '11 at 15:43
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.