function query ( idKl ) { var $tr = $("#tr"+idKl); $.ajax({ type: "POST", url: "/reestr_adm/ajax2.php", data: "id="+idKl, success: function( html ) { $("#td"+idKl).html(html); $tr["fade"+( $tr.is(":hidden") ? "In" : "Out")]("slow"); } }); }