jQuery удаляет первый td после td, у которого есть класс

#jquery

#jquery

Вопрос:

  <tr>
    <td class="ms-descriptiontext ms-inputformdescription">
 Accédez au document à télécharger.
   </td>
   <td><img width="8" height="1" alt="" src="/_layouts/images/blank.gif"></td>
 </tr>
 

как я могу удалить первый td после td с помощью класса ms-descriptiontext ms-inputformdescription

Ответ №1:

Просто:

 $('td.ms-descriptiontext.ms-inputformdescription').next('td').remove();
 

Ссылка: next , remove

Ответ №2:

 $(".ms-descriptiontext").siblings("td").eq(1).remove();
 

Ответ №3:

 $("td.ms-descriptiontext.ms-inputformdescription   td").remove();