JSFiddle - React, Tailwind, and code Playground

by prabhu5013

HTML

<div class="section-1">
    <div id="bookin-ad-wrapper">
        <div class="booking-wrapper booking-wrapper-5">
            <ul>
            <li><label class="w50">Pris kr</label><input type="text" value="" class="price numeric required" name="txtSection[1][5][price]" style=""></li>
            </ul>
        </div>
        <div class="booking-wrapper booking-wrapper-6">
            <ul>
            <li><label class="w50">Pris kr</label><input type="text" value="" class="price numeric required" name="txtSection[1][6][price]"></li>
            </ul>
        </div>
        <div class="booking-wrapper booking-wrapper-0">
            <ul>
             <li><label class="w50">Pris kr</label><input type="text" value="" class="price numeric required" name="txtSection[1][0][price]"></li>
            </ul>
        </div>
    </div>
</div>

JavaScript

$(".price").on("change",function()
               {$(".price").val($(".price").first().val())
               });