Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$('th').each(function(i) { let columnName = $(this).text().trim(); if (columnName === 'Name') { $(this).remove(); let position = i; $('tbody tr').each(function(i) { $(this).find('td:eq(' + position + ')').remove(); }); } });
$('.notsun a').on('mouseover', function() { $('.daddy a').css('color','red'); });