JSFiddle - React, Tailwind, and code Playground

by Сергей Тарасевич

HTML

<div>
    <input style="color:#505050;font-size:14px;text-align:center;width:280px;" class="coupon" type="text" value="457b-8611-420e-809f" autocomplete="off" readonly="readonly">
</div>
<br />
<div>
    <input style="color:#505050;font-size:14px;text-align:center;width:280px;" class="coupon" type="text" value="ebf0-f00f-e81b-8aec" autocomplete="off" readonly="readonly">
</div>
<br />
<div>
    <input style="color:#505050;font-size:14px;text-align:center;width:280px;" class="coupon" type="text" value="7e32-12c3-bc43-3be4" autocomplete="off" readonly="readonly">
</div>

JavaScript

function onclickcoupon() {
    $(".coupon").click(function () {
        $(this).select();
    });
}

$(function () {
    onclickcoupon();
});