Показать сообщение отдельно
  #1 (permalink)  
Старый 06.05.2011, 15:33
Интересующийся
Отправить личное сообщение для pro10026 Посмотреть профиль Найти все сообщения от pro10026
 
Регистрация: 23.01.2011
Сообщений: 11

Ajax json из jQuery 1.3 в 1.4
Есть скрипт, работа которого прекращается при переходе с jquery 1.3 на 1.4. Я не могу понять почему... Вот список изменений 1.4 клац. Помогите плз
<script>
jQuery(document).ready(jQuery(function() {
jQuery.ajax({
type: 	"POST",
url: 	"/engine/modules/gett.php",
data: 	"torrnetnamefile={$torrent1}",
dataType: "json",
success: function(data)
{
$("#total_downloaded-{$row['id']}").text(data.t_downloaded);
$("#total_seeds-{$row['id']}").text(data.t_complete);
$("#total_leachers-{$row['id']}").text(data.t_incomplete);
$("#torrent_size-{$row['id']}").text(data.t_size);
$("#torrent_hash-{$row['id']}").text(data.t_hash);
$("#torrent_name-{$row['id']}").text(data.t_name);
$("#torrent_ann-{$row['id']}").text(data.t_ann);
$("#torrent_priv-{$row['id']}").text(data.t_priv);
}
});
    $("#dwntorrenttxtx-{$row['id']}").toggle(
      function () {
        $("#div_torrentfiles-{$row['id']}").fadeIn("slow");
      },
      function () {
        $("#div_torrentfiles-{$row['id']}").fadeOut("slow");
      });
}));
</script>
Ответить с цитированием