Я искал этот форум, но не могу заставить работать какие-либо решения, я пытаюсь переключить видимость текстовой области, но все текстовые области переключаются одновременно.я довольно новый с jquery, но вот мой код
jQuery (документ) .ready (function () {jQuery (". note"). hide (); jQuery (". note_button)") .click (function () {jQuery (". note "). fadeToggle (" slow "," linear ");});});
для работы с этим html:
<table>
<tbody>
<tr>
<td colspan='2' class='product-name'>
</td>
<td>
</td>
<td></td>
<td class="cart-widget-remove">
</td>
</td>
</tr>
<tr>
<td colspan="6">
<form id="desc" action="" method="post" class="adjustform">
<div class="note">
<textarea name="" onfocus="this.value='';">Your optional note to the kitchen</textarea>
<input class="" type="button" value="Apply changes" />
<input class="" type="button" value="Cancel" />
</div>
</form>