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