Advanced title, simple question:
How to do the following in jQuery:
$("table tr").click(function() {
$("table tr:not(" + $(this) + ")").hide();
// $(this) is only to illustrate my problem
$("table tr").show();
});
Thanks in advance!