Расширенный заголовок, простой вопрос:
Как я могу сделать следующее в jQuery (скрывая все, кроме $(this))?
$("table tr").click(function() {
$("table tr:not(" + $(this) + ")").hide();
// $(this) is only to illustrate my problem
$("table tr").show();
});