Выделение столбца и строки таблицы при наведении
$(".catalog td").mouseover(function(){ $(this).parent().find("td").css("background-color","#f2f6f7"); tds=$(this).parent().find("td"), index=$.inArray(this,tds), sel_tds=$(".catalog td:nth-child("+(index+1)+")"); sel_tds.css("background-color","#fff2be"); $(this).css("background-color","#f8e9b8"); }).mouseout(function(){ $(".catalog td").css("background-color","#ffffff"); });