JSFiddle - React, Tailwind, and code Playground

by Alex

HTML

<input class="give" type="text" value="Текст" />
<input class="give" type="text" value="Текст2" />
<input class="give" type="text" value="Текст3" />
<hr>
<input class="get" type="text" value="" />

JavaScript

$(document).on({
    click : function() {
        $('.get').val($(this).val());
    }
}, ".give");