Есть следующий код
jQuery(document).ready(function(){
jQuery.post('data.xml',{},function(xml){
jQuery('#data').html('');
jQuery(xml).find('div').each(function(){
if(jQuery(this).attr('id')==document.getElementById("town-selector").value){
jQuery('#data').html(jQuery(this).text());
}
});
},'xml');
jQuery('#town-selector').change(function(){
jQuery.post('data.xml',{},function(xml){
jQuery('#data').html('');
jQuery(xml).find('div').each(function(){
if(jQuery(this).attr('id')==document.getElementById("town-selector").value){
jQuery('#data').html(jQuery(this).text());
}
});
},'xml');
});
});
Вопрос: с чем может быть связано то что на сервере на котором я разрабатывал все работает правильно, а тот на который я залил все файлы не возвращает data.xml?