JSFiddle - React, Tailwind, and code Playground

by psyon001

HTML

<table>
    <tr>
        <td><textarea class="mfTextComments" cols="20" rows="2" ></textarea></td>
    </tr>
    <tr>
        <td>
            <select style="height:50px;width:100px" title="Please select a comment from this list by double clicking the comment or create your own in the text area above." size="4">
                <option class="mfValues" value="Value1">Value1</option>
                <option class="mfValues" value="Value2">Value2</option>
                <option class="mfValues" value="Value3">Value3</option>
            </select>
        </td>
    </tr>
</table>

JavaScript

$(".mfValues").dblclick(function() {
    var $this = $(this),
        val = $this.val();
    $this.closest('tr').prev().find(".mfTextComments").val(val);
});