Показать сообщение отдельно
  #1 (permalink)  
Старый 05.08.2010, 18:39
Новичок на форуме
Отправить личное сообщение для jaromudr Посмотреть профиль Найти все сообщения от jaromudr
 
Регистрация: 05.08.2010
Сообщений: 2

$.post, работа сервера
Есть следующий код

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?
Ответить с цитированием