Показать сообщение отдельно
  #8 (permalink)  
Старый 05.06.2012, 12:21
Аспирант
Отправить личное сообщение для modestes Посмотреть профиль Найти все сообщения от modestes
 
Регистрация: 12.04.2012
Сообщений: 43

devote
Спасибо, то что нужно.

Интересует еще вот что

<script type="text/javascript">
    $("#host-table th,#vds-table th").mouseover(function() {
        var tds = $( this ).parent().find("th"),
            index = $.inArray( this, tds );

        $("#host-table th:nth-child,#vds-table th:nth-child("+( index + 2 )+")").css("background-color", "#F1F1E9");
    }).mouseout(function() {
        var tds = $( this ).parent().find("th"),
            index = $.inArray( this, tds );

        $("#host-table th:nth-child,#vds-table th:nth-child("+( index + 2 )+")").css("background-color", "");
    });
</script>

как мне добавить к примеру тень или рамку к выделяемому столбцу?
например рамку
.css("background-color", "#F1F1E9", "border", "1px")
эта запись не работает
или я не правильно записываю?
Ответить с цитированием