Gelişmiş başlık, basit soru:
JQuery'de aşağıdakileri nasıl yapabilirim (hariç her şeyi gizleyerek $(this)
)?
$("table tr").click(function() {
$("table tr:not(" + $(this) + ")").hide();
// $(this) is only to illustrate my problem
$("table tr").show();
});