Работает на jQuery 1.2.3, а на 1.4.4 не работает, а почему? каких функций нет? Помогите разобраться
<script>
$(document).ready(function()
{
$.ajax({
type: 'POST',
url: '/engine/modules/gett.php',
data: 'torrnetnamefile={$tor}',
dataType: 'json',
success: function(msg)
{
if(parseInt(msg.status)==1)
{
$('#total_downloaded-{$row['id']}').text(msg.t_downloaded);
$('#total_seeds-{$row['id']}').text(msg.t_complete);
$('#total_leachers-{$row['id']}').text(msg.t_incomplete);
$('#torrent_size-{$row['id']}').text(msg.t_size);
$('#torrent_hash-{$row['id']}').text(msg.t_hash);
$('#torrent_name-{$row['id']}').text(msg.t_name);
$('#torrent_ann-{$row['id']}').text(msg.t_ann);
}
else if(parseInt(msg.status)==0)
{
$('#total_downloaded-{$row['id']}').text(msg.t_downloaded);
$('#total_seeds-{$row['id']}').text(msg.t_complete);
$('#total_leachers-{$row['id']}').text(msg.t_incomplete);
$('#torrent_size-{$row['id']}').text(msg.t_size);
$('#torrent_hash-{$row['id']}').text(msg.t_hash);
$('#torrent_name-{$row['id']}').text(msg.t_name);
$('#torrent_ann-{$row['id']}').text(msg.t_ann);
}
}
});
$('#dwntorrenttxtx-{$row['id']}').toggle(
function () {
$('#div_torrentfiles-{$row['id']}').fadeIn('slow');
},
function () {
$('#div_torrentfiles-{$row['id']}').fadeOut('slow');
});
});
</script>