Тема: ajax update popup
Показать сообщение отдельно
  #1 (permalink)  
Старый 27.08.2010, 13:50
Интересующийся
Отправить личное сообщение для belbek Посмотреть профиль Найти все сообщения от belbek
 
Регистрация: 18.04.2009
Сообщений: 29

ajax update popup
var options = {
              target: "#message",
              url: location.href,
              success: showResponse
            };
            
            jQuery('#socform').live('submit',function(){  
                  jQuery(this).ajaxSubmit(options); 
                  return false; 
                })
	

 function showResponse(responseText, statusText)  { 
        jQuery('#top_line').html(responseText);
 }



popup с формой .live submit проходит, а jQuery('#top_line').html(responseText); не проходит
Как проапдейтить #top_line находящийся на popup форме?
Ответить с цитированием