Есть скрипт, работа которого прекращается при переходе с 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>