Titre avancé, question simple :
Comment puis-je faire ce qui suit en jQuery (en cachant tout sauf les éléments suivants $(this)
) ?
$("table tr").click(function() {
$("table tr:not(" + $(this) + ")").hide();
// $(this) is only to illustrate my problem
$("table tr").show();
});