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